-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 994 Bytes
/
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
{
"name": "Cashius",
"main": "Gruntfile.js",
"version": "0.1.0",
"description": "Money management mobile hybrid app",
"destinationFolder": "./public/js/",
"destinationName": "cashius",
"author": "Ales Veselka",
"devDependencies": {
"concat-file-array": "^0.1.0",
"grunt": "^1.0.3",
"grunt-cli": "^1.3.2",
"grunt-contrib-concat": "^0.5.0",
"grunt-contrib-uglify": "^4.0.0",
"uglify-js": "2.6.0"
},
"scripts": {
"env": "env",
"start": "node app",
"concat": "concat-file-array -n source.json,source -o public/js/cashius.js",
"uglify": "uglifyjs public/js/cashius.js -o public/js/cashius.min.js -m -c drop_console=true,warnings=false",
"build": "npm run concat && npm run uglify",
"min": "concat-file-array -n source.json,source -o public/js/cashius.js && uglifyjs public/js/cashius.js -o public/js/cashius.min.js -m -c drop_console=true,warnings=false"
}
}