-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.29 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
{
"name": "@nphyx/voctopus",
"version": "0.1.0",
"repository": "https://github.com/nphyx/voctopus",
"description": "An experimental implementation of Sparse Voxel Octrees in javascript.",
"author": "Justen Robertson <nphyxx@gmail.com>",
"main": "",
"scripts": {
"doc": "jsdoc -c doc/conf.json -d doc"
},
"dependencies": {},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babelify": "^7.2.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.0.0",
"gulp-babel-istanbul": "^1.00.0",
"gulp-inject-modules": "^0.1.1",
"gulp-mocha": "^2.2.0",
"gulp-rename": "^1.2.2",
"jsdox": "*",
"jshint": "*",
"mocha": "*",
"should": "^11.2.0"
},
"jshintConfig": {
"curly": false,
"latedef": true,
"newcap": true,
"quotmark": "double",
"undef": true,
"unused": true,
"globalstrict": true,
"asi": true,
"esnext": true,
"browser": true,
"devel": true,
"node": true,
"worker": true,
"globals": {
"chai": false,
"describe": false,
"define": false,
"it": false,
"xit": false,
"before": false,
"beforeEach": false,
"after": false,
"afterEach": false
}
},
"babel": {
"presets": [
"es2015"
]
},
"license": "MIT"
}