-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.07 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
{
"name": "@buttercup/generator",
"version": "2.0.0",
"description": "NodeJS password generator",
"main": "source/index.js",
"scripts": {
"format": "prettier --write '{source,test}/**/*.js'",
"pub": "np",
"test": "run-s test:unit test:format",
"test:format": "prettier-check '{source,test}/**/*.js'",
"test:unit": "mocha -r test/index.js 'test/unit/**/*.spec.js'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{source,test}/**/*.js": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/buttercup/buttercup-generator.git"
},
"author": "Buttercup <[email protected]>",
"license": "MIT",
"dependencies": {
"brorand": "^1.1.0",
"deep-freeze": "0.0.1"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"husky": "^5.1.3",
"lint-staged": "^10.5.4",
"mocha": "^5.0.4",
"np": "^2.20.1",
"npm-run-all": "^4.1.1",
"prettier": "^1.11.1",
"prettier-check": "^2.0.0"
}
}