-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.83 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
{
"name": "affilinet-extension",
"license": "MIT",
"description": "A browser extension for for affilinet publishers",
"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 build && cross-env NODE_ENV=production cross-env TARGET=chrome gulp zip",
"opera-dist": "cross-env NODE_ENV=production cross-env TARGET=opera gulp build && cross-env NODE_ENV=production cross-env TARGET=opera gulp zip",
"firefox-dist": "cross-env NODE_ENV=production cross-env TARGET=firefox gulp build && cross-env NODE_ENV=production cross-env TARGET=firefox gulp zip",
"dist": "npm run chrome-dist && npm run opera-dist && npm run firefox-dist"
},
"repository": {
"type": "git",
"url": "https://github.com/affilinet/browser-webextension-publisher"
},
"author": "affilinet GmbH / teraone <gotre@teraone.de> (https://affili.net)",
"bugs": {
"url": "https://github.com/affilinet/browser-webextension-publisher/issues"
},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-preset-es2015": "^6.1.2",
"babel-register": "^6.14.0",
"babelify": "^7.3.0",
"bower": "^1.3.9",
"browserify": "^14.1.0",
"cross-env": "^3.2.4",
"del": "^3.0.0",
"event-stream": "^3.3.4",
"gulp": "4.0.0",
"gulp-add-src": "^1.0.0",
"gulp-angular-templatecache": "^1.9.1",
"gulp-babel": "^6.1.0",
"gulp-clean": "^0.3.1",
"gulp-clean-css": "3.7.0",
"gulp-concat": "^2.4.1",
"gulp-connect": "^5.7.0",
"gulp-csv2json": "^0.2.5",
"gulp-eslint": "^2.0.0",
"gulp-htmlmin": "3.0.0",
"gulp-if": "^2.0.2",
"gulp-json-format": "^1.0.0",
"gulp-less": "^4.0.0",
"gulp-livereload": "3.8.1",
"gulp-load-plugins": "^1.5.0",
"gulp-merge-json": "^1.1.0",
"gulp-minify-css": "^1.2.4",
"gulp-minify-html": "^1.0.6",
"gulp-modify": "^0.1.1",
"gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-run-sequence": "*",
"gulp-sass": "^2.2.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.4",
"gulp-usemin": "^0.3.28",
"gulp-watch": "^5.0.1",
"gulp-wrap": "^0.14.0",
"gulp-zip": "^2.0.3",
"preprocessify": "^1.0.1",
"vinyl-buffer": "1.0.1",
"vinyl-source-stream": "2.0.0",
"gulp-tap": "^1.0.1",
"gulp-template": "^4.0.0"
},
"dependencies": {
"newline-remove": "^1.0.2",
"papaparse": "^4.3.5"
}
}