-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathpackage.json
53 lines (53 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
{
"name": "webdash",
"version": "1.5.0",
"license": "MIT",
"dependencies": {
"app-root-path": "^2.0.1",
"bricks.js": "^1.8.0",
"chalk": "^2.3.2",
"check-node-version": "^3.2.0",
"cors": "^2.8.4",
"express": "^4.16.3",
"filehound": "^1.16.2",
"hoek": "^5.0.3",
"is-global": "^0.1.0",
"lodash": "^4.17.0",
"markdown-it": "^8.4.1",
"node-fetch": "^2.1.2",
"opn": "^5.3.0",
"pkg-dir": "^2.0.0",
"resize-observer-polyfill": "^1.5.0",
"serve-static": "^1.13.2",
"snapsvg": "^0.5.1",
"yargs": "^11.0.0"
},
"devDependencies": {
"@types/node": "^9.4.6",
"all-contributors-cli": "^4.11.1",
"concurrently": "^3.5.1",
"eslint": "^3.19.0",
"eslint-config-google": "^0.7.0",
"eslint-plugin-html": "^2.0.0",
"workbox-cli": "^3.0.1"
},
"scripts": {
"dev": "./scripts/index.js --local",
"postinstall": "node ./scripts/install.js",
"prepublishOnly": "npx all-contributors check && polymer build && workbox injectManifest",
"lint": "npm run lint:javascript && polymer lint",
"lint:javascript": "eslint . --ext js,html --ignore-path .gitignore",
"test": "polymer test",
"test:integration": "polymer build",
"contrib": "all-contributors",
"publish-next": "npm version prerelease && npm publish --tag next"
},
"bin": {
"webdash": "./scripts/index.js"
},
"engines": {
"node": ">=8.0.0"
},
"repository": "https://github.com/jadjoubran/webdash",
"homepage": "https://webdash.xyz"
}