-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.54 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": "test_july_27_2020",
"version": "1.0.0",
"description": "July 27th's Test",
"main": "index.js",
"scripts": {
"build": "babel ./index.js -d build",
"eslint": "eslint . --fix",
"test": "jest test .",
"test:watch": "jest test . --watchAll=true",
"lint": "npm run lint-scripts",
"lint-scripts": "eslint './{**,.}/*.js'",
"commit": "npx git-cz"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/hutber/test-july-27-2020.git"
},
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/hutber/test-july-27-2020/issues"
},
"homepage": "https://github.com/hutber/test-july-27-2020#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.18.2",
"eslint-plugin-mocha": "^7.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-wyze": "^3.4.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5"
}
}