-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 2.11 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
55
56
57
58
59
60
61
{
"name": "js-prototype-chain-viewer",
"version": "0.1.0",
"description": "A visualization of JavaScript prototype chains.",
"scripts": {
"build": "browserify -e lib/index.js -o dist/js-prototype-chain-viewer.js",
"build:web": "npm run build && browserify -o web/scripts/bundle.js -e web/components/index.jsx -p [minifyify --map /web/scripts/bundle.js.map --output web/scripts/bundle.js.map] -d",
"clean": "rimraf dist/* && rimraf -f web/scripts/bundle.js* && rimraf -r -f doc/*",
"dev": "npm run open:dev & npm run serve -s",
"doc": "esdoc -c doc.json",
"open:dev": "opener http://localhost:8080",
"open:prod": "opener http://tansongyang.github.io/js-prototype-chain-viewer/",
"rebuild": "npm run clean && npm run build:web",
"serve": "http-server",
"test": "mocha --require test/helper/config.js --compilers js:babel-register",
"watch": "parallelshell \"npm run watch:js\" \"npm run watch:test\"",
"watch:js": "nodemon -e js -w lib -w web/scripts/ \"npm run build\"",
"watch:test": "npm run test -- -w"
},
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/tansongyang/js-prototype-chain-viewer.git"
},
"author": "Frank Tan",
"license": "ISC",
"bugs": {
"url": "https://github.com/tansongyang/js-prototype-chain-viewer/issues"
},
"homepage": "https://github.com/tansongyang/js-prototype-chain-viewer",
"devDependencies": {
"babel": "^6.3.26",
"babel-core": "^6.4.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^10.2.6",
"chai": "^3.2.0",
"codemirror": "^5.10.0",
"http-server": "^0.8.5",
"jsdoc": "^3.3.2",
"jshint": "^2.8.0",
"minifyify": "^7.2.1",
"mocha": "^2.2.5",
"nodemon": "^1.4.1",
"opener": "^1.4.1",
"parallelshell": "^2.0.0",
"react": "^0.14.6",
"react-codemirror": "^0.2.5",
"react-dom": "^0.14.6",
"rimraf": "^2.5.1",
"watch": "^0.16.0"
},
"browserify": {
"transform": [
"babelify"
]
}
}