-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.95 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "ogre2",
"version": "0.4.1",
"description": "Object Graph engine",
"main": "index.js",
"license": "MIT",
"homepage": "https://github.com/elucidata/ogre2",
"bugs": {
"url": "https://github.com/elucidata/ogre2/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/elucidata/ogre2.git"
},
"scripts": {
"all": "npm run build && npm run build-browser-tests && npm run dist && npm run example && npm run test",
"build": "babel src/ -d lib/ --stage 0 --loose",
"build-browser-tests": "browserify test/*.js -o dist/browser-tests/ogre-tests.js",
"watch": "babel -w src/ -d lib/ --stage 0 --loose",
"dist": "NODE_ENV=production browserify index.js -o dist/ogre.js --standalone Ogre -p bundle-collapser/plugin && npm run minify",
"example": "NODE_ENV=development browserify example/src/visualize-changes.jsx -o example/js/visualize-changes-bundle.js -t [ babelify --stage 0 ]",
"minify": "cat dist/ogre.js | uglifyjs -m -c > dist/ogre.min.js && npm run gz-size",
"test": "tape test/*.js | tap-spec",
"toc": "mdtoc ReadMe.md ReadMe.md",
"update-ver": "node ./update-ver.js",
"gz-size": "gzip -c dist/ogre.min.js | wc -c | pretty-bytes",
"inc-major": "mversion major && npm run update-ver",
"inc-minor": "mversion minor && npm run update-ver",
"inc-patch": "mversion patch && npm run update-ver"
},
"author": "Matt McCray <[email protected]>",
"dependencies": {
"react": "^0.12.0",
"elucidata-type": "^1.1.1",
"es6-collections": "^0.5.1",
"eventemitter3": "^1.1.0"
},
"devDependencies": {
"tape": "^3.0.2",
"react-tools": "^0.12.0",
"browserify": "^6.2.0",
"reactify": "^0.15.2",
"watchify": "^2.1.1",
"uglifyjs": "^2.3.6",
"tap-spec": "^1.0.1",
"random-color": "0.0.1",
"envify": "^3.0.0",
"stripify": "^1.2.0",
"mversion": "^1.7.0",
"babelify": "^6.1.2",
"babel": "^5.4.7",
"bundle-collapser": "^1.2.0"
}
}