forked from backmarket-oss/github-mermaid-extension
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.6 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
{
"private": true,
"scripts": {
"test": "echo 'Warning: test not implemented' >&2",
"chrome-build": "cross-env TARGET=chrome gulp",
"opera-build": "cross-env TARGET=opera gulp",
"firefox-build": "cross-env TARGET=firefox gulp",
"build": "cross-env NODE_ENV=production npm run chrome-build && cross-env NODE_ENV=production npm run opera-build && cross-env NODE_ENV=production npm run firefox-build",
"chrome-watch": "cross-env TARGET=chrome gulp watch",
"opera-watch": "cross-env TARGET=opera gulp watch",
"firefox-watch": "cross-env TARGET=firefox gulp watch",
"chrome-dist": "cross-env NODE_ENV=production cross-env TARGET=chrome gulp dist",
"opera-dist": "cross-env NODE_ENV=production cross-env TARGET=opera gulp dist",
"firefox-dist": "cross-env NODE_ENV=production cross-env TARGET=firefox gulp dist",
"dist": "npm run chrome-dist && npm run opera-dist && npm run firefox-dist"
},
"dependencies": {
"@babel/polyfill": "^7.4.3",
"mermaid": "^8.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/register": "^7.4.0",
"babel-core": "^7.0.0-bridge.0",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"core-js": "^3.0.1",
"cross-env": "^5.2.0",
"del": "^4.1.0",
"event-stream": "^4.0.1",
"gulp": "^4.0.1",
"gulp-if": "^2.0.2",
"gulp-livereload": "^4.0.1",
"gulp-merge-json": "^1.3.1",
"gulp-plumber": "^1.2.1",
"gulp-sass": "^4.0.2",
"gulp-zip": "^5.0.0",
"preprocessify": "^1.0.1",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
}
}