-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 895 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
26
27
28
29
30
{
"name": "es6fp",
"version": "0.2.0",
"description": "Learn Functional Programming with ES6",
"repository": "https://github.com/priyatam/es6fp",
"author": "Priyatam Mudivarti <[email protected]>",
"license": "MIT",
"dependencies": {
"immutable": "^3.7.3",
"jsonp": "^0.2.0",
"mori": "^0.3.2"
},
"devDependencies": {
"babel": "^5.5.5",
"babelify": "^6.1.2",
"browserify": "^10.2.4",
"live-server": "^0.7.1",
"uglify-js2": "^2.1.11",
"watchify": "^3.2.2"
},
"scripts": {
"prestart": "npm install",
"dev": "watchify lib/main.js -v -t babelify -o bundle.js",
"prod": "browserify lib/main.js -v -t babelify -o release.js",
"minify": "uglifyjs2 release.js -o dist/index.min.js -c -m",
"release": "npm run prod && npm run minify",
"server": "live-server --port=8000",
"start": "npm run dev & npm run server"
}
}