-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.82 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
{
"name": "sigtools",
"version": "4.2.0",
"description": "An extension that makes the information system of the University of Porto slightly better.",
"main": "gulpfile.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "./node_modules/http-server/bin/http-server ./src/ -p 3000 -c-1 --cors -o tests.html",
"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",
"clean": "gulp cleanAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/msramalho/SigTools.git"
},
"keywords": [
"browser-extension",
"productivity"
],
"author": "msramalho",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/msramalho/SigTools/issues"
},
"homepage": "https://github.com/msramalho/SigTools#readme",
"devDependencies": {
"cross-env": "^7.0.2",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-livereload": "^4.0.2",
"gulp-load-plugins": "^2.0.4",
"gulp-merge-json": "^2.1.1",
"gulp-preprocess": "^4.0.2",
"gulp-zip": "^5.0.2",
"http-server": "^14.0.0"
}
}