-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.19 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@xspecs/ddk",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/XSpecs/ddk"
},
"bugs": {
"url": "https://github.com/XSpecs/ddk/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/XSpecs/ddk#readme",
"author": "Sam Hatoum <[email protected]>",
"license": "Elastic License 2.0",
"engines": {
"node": ">=18.0.0",
"npm": "please-use-yarn",
"yarn": ">=1.22.0"
},
"files": [
"dist"
],
"packageManager": "[email protected]",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"commit": "git-cz",
"fix": "yarn fix:lint && yarn fix:format",
"fix:format": "echo Fixing formatting && prettier --write . --loglevel silent",
"fix:lint": "eslint --fix .",
"release": "semantic-release",
"release-local": "env $(cat .env | grep -v \"#\" | xargs) semantic-release",
"test": "yarn test:lint && yarn test:types && yarn test:format && yarn test:unit",
"test:format": "echo Checking formatting && prettier --check . --loglevel silent",
"test:lint": "eslint .",
"test:types": "tsc --noEmit",
"test:unit": "jest --coverage",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.3",
"@semantic-release/npm": "^10.0.4",
"@types/eslint": "^8.40.2",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.3",
"@types/prettier": "^2.7.3",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-config": "^29.5.0",
"pinst": "^3.0.0",
"prettier": "^2.8.8",
"semantic-release": "^21.0.6",
"semantic-release-yarn": "^2.0.0",
"testdouble": "^3.18.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}