-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.27 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": "fastpage",
"version": "1.4.1",
"description": "a tool to quickly generate front-end pages and associated files",
"main": ".eslintrc.js",
"bin": {
"fastpage": "bin/fastpage.js",
"fp": "bin/fastpage.js"
},
"scripts": {
"precommit": "lint-staged",
"test": "jest && codecov"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/ReAlign/fastpage.git"
},
"keywords": [
"fast",
"page",
"generate file",
"quickly",
"tool",
"nodejs",
"auto"
],
"lint-staged": {
"linters": {
"bin/*.js": [
"eslint --fix",
"git add"
],
"lib/**/*.js": [
"eslint --fix",
"git add"
]
}
},
"dependencies": {
"commander": "^2.11.0",
"n-s-logs": "^0.2.0",
"inquirer": "^3.3.0",
"moment": "^2.21.0"
},
"devDependencies": {
"eslint": "^3.19.0",
"babel-eslint": "^8.0.1",
"husky": "^0.13.4",
"lint-staged": "^3.6.1",
"jest": "^21.2.1",
"codecov": "^2.3.0"
},
"author": "ReAlign",
"license": "ISC",
"bugs": {
"url": "https://github.com/ReAlign/fastpage/issues"
},
"homepage": "https://github.com/ReAlign/fastpage#readme"
}