-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.5 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
{
"name": "web-tooling-benchmark-generator",
"version": "1.0.2",
"description": "CLI tools to generate benchmark cases in the v8/web-tooling-benchmark repository.",
"keywords": [
"v8",
"web-tooling-benchmark",
"cli",
"tools",
"generator"
],
"main": "index.js",
"bin": {
"wtb-generate": "./index.js"
},
"files": [
"lib/",
"templates/",
"config.json"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint index.js lib",
"precommit": "lint-staged"
},
"lint-staged": {
"index.js": [
"prettier --write",
"git add"
],
"lib/**/*.js": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/alopezsanchez/web-tooling-benchmark-generator.git"
},
"author": "Alejandro López <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alopezsanchez/web-tooling-benchmark-generator/issues"
},
"homepage": "https://github.com/alopezsanchez/web-tooling-benchmark-generator#readme",
"dependencies": {
"chalk": "^2.3.2",
"clear": "^0.1.0",
"cross-spawn": "^6.0.5",
"ejs": "^2.5.7",
"figlet": "^1.2.0",
"figures": "^2.0.0",
"inquirer": "^5.1.0",
"lodash.sortedindex": "^4.1.0",
"ora": "^2.0.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"prettier": "^1.11.1"
}
}