-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.29 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
{
"name": "TBcustom",
"version": "0.0.1",
"description": "Make your own toucanoo colouring sheet",
"repository": {
"type": "git",
"url": "https://github.com/acmoles/TBcustom.git"
},
"main": "index.html",
"dependencies": {
"animejs": "^1.1.1",
"detectie": "^1.0.0",
"dragula": "^3.7.2",
"filesaver.js-npm": "^1.0.1",
"jspdf": "^1.3.2",
"pixi.js": "^4.5.1"
},
"devDependencies": {
"browserify": "^13.3.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^5.0.0",
"gulp-clean-css": "^3.9.4",
"gulp-csso": "^3.0.1",
"gulp-sass": "^4.0.1",
"gulp-sourcemaps": "^2.6.4",
"minifyify": "^7.3.4",
"uglify-js": "^3.3.24"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "beefy assets/modules/main.js --browserify $(which browserify) --live",
"dev": "watchify --debug assets/modules/main.js -o assets/js/bundle.js -v",
"build": "browserify assets/modules/main.js -d -p [minifyify --no-map] > assets/js/bundle.js",
"compress": "uglifyjs assets/js/bundle.js --compress drop_console,conditionals,booleans,dead_code,loops,unused,join_vars --mangle --screw-ie8 --output assets/js/bundle.js",
"buildc": "npm run build && npm run compress"
},
"author": "Ant",
"license": "ISC",
"private": "true"
}