forked from shower/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.61 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
{
"name": "shower-cli",
"version": "0.2.2",
"description": "Command line interface for Shower",
"keywords": [
"shower",
"cli"
],
"author": "Nikolay Govorov <nikolay_govorov@bk.ru>",
"license": "MIT",
"repository": "shower/cli",
"bin": {
"shower": "source/index.js"
},
"scripts": {
"lint-staged": "lint-staged",
"spellcheck": "yaspeller-ci *.md",
"lint": "eslint-ci **/*.js --fix",
"test": "jest && npm run lint && npm run spellcheck"
},
"engines": {
"node": ">=8"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"<rootDir>/**/__tests__/*.test.js"
]
},
"pre-commit": [
"lint-staged"
],
"devDependencies": {
"eslint": "^4.19.1",
"eslint-ci": "^0.1.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^3.1.0",
"jest": "^22.4.4",
"lint-staged": "^7.2.2",
"pdf-parse": "^1.0.8",
"pre-commit": "^1.2.2",
"yaspeller-ci": "^1.0.0"
},
"dependencies": {
"browser-sync": "^2.24.6",
"chalk": "^2.4.1",
"del": "^3.0.0",
"execa": "^0.11.0",
"get-stream": "^4.0.0",
"gh-pages": "^1.2.0",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"gulp-template": "^5.0.0",
"gulp-zip": "^4.2.0",
"inquirer": "^6.2.0",
"listr": "^0.14.1",
"merge-stream": "^1.0.1",
"puppeteer": "^1.7.0",
"semver": "^5.5.1",
"signale": "^1.2.1",
"tmp": "0.0.33",
"update-notifier": "^2.5.0",
"vinyl-fs": "^3.0.3",
"yargs": "^11.1.0"
}
}