-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.19 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
{
"name": "fireball-js",
"version": "1.1.5",
"description": "Breakpoints for performance",
"main": "dist/index.min.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run babel && npm run bowrap && npm run uglify && npm run clean",
"babel": "babel src/index.js --out-file src/index-es5-temp.js",
"bowrap": "bowrap src/index-es5-temp.js -n Fireball -o src/index-bowrapped-temp.js",
"uglify": "uglifyjs src/index-bowrapped-temp.js --output dist/index.min.js --screw-ie8 --compress",
"clean": "del-cli src/*temp.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidgilbertson/fireball.git"
},
"author": "David Gilbertson <gilbertson.david@gmail.com> (http://www.dg707.com)",
"contributors": [
{
"name": "Fergal Hanley",
"email": "fergalhanley@gmail.com",
"url": "http://fergalhanley.com"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/davidgilbertson/fireball/issues"
},
"homepage": "https://github.com/davidgilbertson/fireball#readme",
"devDependencies": {
"babel": "^5.8.23",
"bowrap": "1.0.5",
"del-cli": "^0.2.0",
"uglify-js": "^2.4.24"
}
}