-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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
{
"name": "js--nightwatch-recorder",
"version": "1.0.0",
"description": "Nightwatch.js test recorder extension for Google Chrome\r ===========",
"main": "nightwatch.js",
"scripts": {
"test": "mocha ./tests/tests.js",
"prettier": "prettier --write ./**/*.js ./public/**/*.js",
"prettier-test": "prettier --list-different ./**/*.js ./public/**/*.js",
"lint": "eslint ./**/*.js ./public/**/*.js",
"lint-staged": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PhilippeChab/js--nightwatch-recorder.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/PhilippeChab/js--nightwatch-recorder/issues"
},
"homepage": "https://github.com/PhilippeChab/js--nightwatch-recorder#readme",
"dependencies": {
"mocha": "^5.2.0",
"prettier": "^1.14.3",
"eslint": "^5.6.1",
"lint-staged": "7.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write",
"git add"
]
},
"devDependencies": {
"husky": "v1.0.0-rc.13"
}
}