forked from plugCubed/plugCubed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.6 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.6 KB
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
{
"name": "plugCubed",
"description": "Gulp Build System for PlugCubed",
"version": "1.0.0",
"author": "The plugCubed Team",
"browserslist": [
"> 1%",
"last 5 versions",
"not ie < 9"
],
"bugs": {
"url": "https://github.com/plugcubed/plugcubed/issues",
"email": "1337alexpham@gmail.com"
},
"devDependencies": {
"autoprefixer": "^9.1.3",
"cssnano": "^4.0.5",
"eslint-config-thedark1337": "^4.13.1",
"graceful-fs": "^4.1.11",
"gulp": "^4.0.0",
"gulp-bytediff": "^1.0.0",
"gulp-data": "^1.3.1",
"gulp-eslint": "^5.0.0",
"gulp-hub": "^4.2.0",
"gulp-if": "^2.0.2",
"gulp-just-replace": "^1.0.2",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^1.4.0",
"gulp-sourcemaps": "^2.6.3",
"gulp-template": "^5.0.0",
"gulp-uglify": "^3.0.1",
"gulp-zip": "^4.2.0",
"is-ci": "^1.2.0",
"make-dir": "^1.3.0",
"postcss-unprefix": "^2.1.3",
"requirejs": "^2.3.5",
"rimraf": "^2.6.2"
},
"homepage": "https://plugcubed.net",
"license": "GPL-3.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/plugcubed/plugcubed.git"
},
"scripts": {
"buildAll": "gulp build:all",
"buildAlpha": "gulp build:alpha",
"buildDev": "gulp build:dev",
"buildRelease": "gulp build:release",
"test": "npm run testAlpha && npm run testRelease",
"testAlpha": "gulp test:alpha",
"testDev": "gulp test:dev",
"testRelease": "gulp test:release",
"watchAlpha": "gulp watch:alpha",
"watchDev": "gulp watch:dev",
"watchRelease": "gulp watch:release"
},
"dependencies": {}
}