-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.51 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
{
"name": "foot",
"version": "1.0.0",
"main": "src/index.ts",
"author": "Shane Jordan <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.19",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"cypress": "^6.2.0",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "2.2.1",
"standard-version": "^9.1.0",
"ts-node": "^9.1.1",
"typedoc": "^0.20.10",
"typescript": "^4.1.3"
},
"scripts": {
"start": "yarn run build && node src/index",
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --collect-coverage",
"test:cypress": "$(yarn bin)/cypress open",
"test:cypress:run": "$(yarn bin)/cypress run",
"lint": "eslint",
"lint:fix": "eslint --fix",
"release": "standard-version",
"format:prettier": "$(yarn bin)/prettier --check .",
"format:prettier:fix": "$(yarn bin)/prettier --fix .",
"docs": "npx typedoc **.ts"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,ts,css,json,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@commitlint/config-conventional": "^11.0.0"
}
}