-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
77 lines (77 loc) · 1.92 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "scaffold-static",
"version": "1.9.0",
"description": "Start out building static websites powered by vanilla-js with this CLI tool",
"main": "bin/index.js",
"files": [
"bin",
"lib"
],
"bin": {
"scaffold-static": "./bin/index.js"
},
"scripts": {
"build": "gulp",
"lint": "eslint __e2e__ src",
"lint:fix": "eslint --fix __e2e__ src",
"pretest": "yarn build && yarn lint",
"test": "jest",
"test:e2e": "jest __e2e__",
"test:unit": "jest src --coverage"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{__e2e__,src}/**/*.ts": "eslint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamesgeorge007/scaffold-static.git"
},
"keywords": [
"nodejs",
"cli",
"inquirer.js",
"commander.js"
],
"author": "James George<[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/jamesgeorge007/scaffold-static/issues"
},
"homepage": "https://github.com/jamesgeorge007/scaffold-static#readme",
"dependencies": {
"commander": "^6.2.1",
"execa": "^4.0.0",
"inquirer": "^6.2.1",
"kleur": "^3.0.3",
"mkdirp": "^1.0.3",
"node-banner": "^1.4.0",
"ora": "^4.0.3"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@types/inquirer": "^6.0.2",
"@types/jest": "^26.0.19",
"@types/mkdirp": "^0.5.2",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"del": "^5.1.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.2.0",
"gulp": "^4.0.2",
"husky": "^2.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.1.1",
"prettier": "^1.19.1",
"typescript": "^3.5.1"
}
}