This repository has been archived by the owner on Mar 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (65 loc) · 1.54 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
62
63
64
65
66
{
"name": "dolly",
"version": "0.0.3",
"description": "A JavaScript library for objects to follow other objects in 3D space",
"main": "dist/dolly.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/povdocs/dolly.git"
},
"homepage": "https://github.com/povdocs/dolly",
"bugs": {
"url": "https://github.com/povdocs/dolly/issues"
},
"author": "Brian Chirls <[email protected]> (http://chirls.com)",
"license": "MIT",
"devDependencies": {
"babel-core": "^5.4.3",
"babel-loader": "^5.1.2",
"del": "^1.2.0",
"gulp": "^3.8.11",
"gulp-webpack": "^1.4.0",
"jshint": "^2.7.0",
"jshint-loader": "^0.8.3",
"node-libs-browser": "^0.5.0",
"webpack": "^1.9.7"
},
"dependencies": {
"object-assign": "^3.0.0",
"event-emitter": "^0.3.3",
"gl-matrix-vec3": "^2.2.1-npm"
},
"jshintConfig": {
"globals": {
"console": true
},
"esnext": true,
"bitwise": true,
"browser": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"es3": true,
"forin": true,
"freeze": true,
"funcscope": true,
"globalstrict": true,
"immed": true,
"iterator": true,
"latedef": true,
"maxparams": 4,
"newcap": true,
"noarg": true,
"nonbsp": true,
"nonew": true,
"notypeof": true,
"quotmark": "single",
"shadow": true,
"singleGroups": true,
"undef": true,
"unused": true
}
}