-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.34 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
{
"name": "reticker",
"version": "0.0.1-alpha.1",
"repository": "[email protected]:ShaunLWM/reticker.git",
"license": "MIT",
"author": "ShaunLWM",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">11"
},
"scripts": {
"start": "yarn watch",
"build": "tsc",
"watch": "tsc --watch",
"prettier": "prettier 'src/**/*.ts'",
"prettier:fix": "prettier --write 'src/**/*.ts'",
"eslint": "eslint 'src/**/*.ts'",
"eslint:fix": "eslint --fix 'src/**/*.ts'",
"prepare": "husky install",
"test": "jest",
"test:watch": "jest --watch",
"prepublish": "tsc"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --max-warnings=0",
"prettier --write"
]
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-prettier": "3.4.1",
"husky": "^7.0.2",
"jest": "^27.0.6",
"jest-extended": "^0.11.5",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"ts-jest": "^27.0.5",
"typescript": "^4.3.5"
},
"dependencies": {},
"jest": {
"verbose": true,
"setupFilesAfterEnv": [
"jest-extended"
]
}
}