-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
64 lines (64 loc) · 2.35 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
{
"name": "send-to-improved-initiative",
"version": "0.7.0",
"description": "A cross browser extension that imports D&D Beyond StatBlocks into Improved Initiative",
"repository": {
"url": "https://github.com/cynicaloptimist/send-to-improved-initiative"
},
"license": "MIT",
"scripts": {
"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"
},
"author": "Evan Bailey <[email protected]> (https://github.com/cynicaloptimist)",
"contributors": [
"Bharani <[email protected]> (https://github.com/bharani91)",
"twloveduck <?> (https://github.com/twloveduck)"
],
"devDependencies": {
"@types/chrome": "^0.0.270",
"@types/node": "^12.20.36",
"babel-core": "^6.1.2",
"babel-preset-es2015": "^6.1.2",
"babelify": "^7.3.0",
"browserify": "^14.1.0",
"cash-dom": "^4.1.5",
"cross-env": "^3.2.4",
"event-stream": "^3.3.4",
"gulp": "^4.0.2",
"gulp-babel": "^6.1.0",
"gulp-clean": "^0.4.0",
"gulp-eslint": "^6.0.0",
"gulp-if": "^2.0.2",
"gulp-livereload": "^4.0.2",
"gulp-load-plugins": "^2.0.7",
"gulp-merge-json": "^1.0.0",
"gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-run-sequence": "*",
"gulp-sass": "^5.0.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify-es": "^1.0.4",
"gulp-zip": "^5.1.0",
"json-url": "^2.6.0",
"preprocessify": "^1.0.1",
"tsify": "^4.0.2",
"typescript": "^5.5.4",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"lz-string": "^1.5.0",
"preact": "^10.5.15",
"sass": "^1.43.4"
}
}