-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 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
58
59
60
61
62
63
{
"name": "spraygun",
"description": "Quickly generate JavaScript apps from Carbon Five-flavored templates",
"keywords": [],
"version": "0.4.0",
"license": "MIT",
"author": "Carbon Five",
"repository": {
"type": "git",
"url": "https://github.com/carbonfive/spraygun.git"
},
"bugs": {
"type": "git",
"url": "https://github.com/carbonfive/spraygun/issues"
},
"homepage": {
"type": "git",
"url": "https://github.com/carbonfive/spraygun"
},
"bin": "./bin/spraygun",
"files": [
"bin",
"src"
],
"scripts": {
"prepare": "husky install",
"start": "node bin/spraygun",
"lint": "eslint 'src/**/*.js'",
"test": "jest --watch",
"test:coverage": "jest --coverage"
},
"lint-staged": {
"src/**/*.js": "eslint"
},
"dependencies": {
"chalk": "^4.1.2",
"shelljs": "^0.8.5",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-junit": "^14.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
},
"engines": {
"node": "^16.13.0"
},
"jest": {
"testEnvironment": "node",
"roots": [
"src"
],
"collectCoverageFrom": [
"src/**/*.js"
]
}
}