-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
74 lines (74 loc) · 1.71 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
{
"name": "awesome-skeleton",
"version": "0.1.5",
"description": "骨架图生成器",
"author": "",
"main": "src/index.js",
"bin": {
"skeleton": "bin/skeleton.js"
},
"scripts": {
"dev": "rollup --config rollup.config.js --watch",
"build": "rollup --config rollup.config.js",
"lint": "npm run build && eslint . --fix",
"test": "nyc mocha",
"ci": "npm run lint && npm run test",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add .",
"contributor": "git-contributor",
"prepublishOnly": "np --yolo --no-publish"
},
"dependencies": {
"base64-img": "^1.0.4",
"commander": "^3.0.1",
"html-minifier": "^4.0.0",
"images": "^3.0.2",
"puppeteer": "^1.2.0",
"update-notifier": "^3.0.1",
"xutil": "^1.0.11"
},
"devDependencies": {
"@commitlint/config-conventional": "^8.2.0",
"commitlint": "^8.2.0",
"conventional-changelog-cli": "^2.0.23",
"eslint": "^6.3.0",
"eslint-config-egg": "^7.5.1",
"git-contributor": "^1.0.10",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"rollup": "^1.20.3"
},
"repository": {
"type": "git",
"url": "[email protected]:kaola-fed/awesome-skeleton.git"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"bugs": {
"url": "https://github.com/kaola-fed/awesome-skeleton/issues"
},
"engines": {
"node": ">=8.9.0"
}
}