-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
82 lines (82 loc) · 1.86 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
78
79
80
81
82
{
"name": "@shower/cli",
"description": "Command line interface for Shower",
"version": "0.3.1",
"publishConfig": {
"access": "public"
},
"author": {
"name": "Nikolay Govorov",
"email": "[email protected]"
},
"homepage": "https://github.com/shower/cli",
"repository": {
"type": "git",
"url": "git://github.com/shower/cli.git"
},
"bugs": {
"url": "https://github.com/shower/cli/issues"
},
"license": "MIT",
"keywords": [
"shower",
"presentation",
"cli"
],
"engines": {
"node": ">=8"
},
"bin": {
"shower": "bin/cli.js"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-ci": "^1.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"jest": "^25.5.4",
"lint-staged": "^10.5.4",
"pdf-parse": "^1.1.1",
"pre-commit": "^1.2.2",
"yaspeller-ci": "^1.0.2"
},
"dependencies": {
"browser-sync": "^2.26.14",
"chalk": "^4.1.0",
"chrome-launcher": "^0.13.4",
"del": "^5.1.0",
"execa": "^4.1.0",
"gh-pages": "^2.2.0",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.0.0",
"gulp-template": "^5.0.0",
"gulp-zip": "^5.0.2",
"inquirer": "^7.3.3",
"listr": "^0.14.3",
"merge-stream": "^2.0.0",
"puppeteer-core": "^3.3.0",
"semver": "^7.3.4",
"tmp": "^0.1.0",
"update-notifier": "^4.1.3",
"vinyl-fs": "^3.0.3",
"yargs": "^15.4.1"
},
"pre-commit": [
"lint-staged"
],
"jest": {
"testEnvironment": "node",
"testMatch": [
"<rootDir>/**/__tests__/*.test.js"
]
},
"scripts": {
"lint-staged": "lint-staged",
"spellcheck": "yaspeller-ci *.md",
"lint": "eslint-ci **/*.js --fix",
"test": "jest && npm run lint && npm run spellcheck"
}
}