-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1010 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
31
32
33
34
35
36
37
{
"name": "arborjs",
"version": "1.0.5",
"description": "Parametric L-system interpreter.",
"main": "lib/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --compilers js:babel-core/register",
"build": "./node_modules/babel-cli/bin/babel.js src -d lib/",
"docs": "./node_modules/.bin/esdoc -c ./esdoc.json"
},
"repository": {
"type": "git",
"url": "https://github.com/dkushner/ArborJS"
},
"author": "David Kushner",
"license": "MIT",
"bugs": {
"url": "https://github.com/dkushner/ArborJS/issues"
},
"homepage": "https://github.com/dkushner/ArborJS",
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"esdoc": "^0.4.7",
"gulp": "^3.8.11",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.0.0",
"mocha": "^2.4.5"
},
"dependencies": {
"lodash": "^4.12.0",
"three": "^0.78.0"
}
}