-
Notifications
You must be signed in to change notification settings - Fork 115
/
package.json
43 lines (43 loc) · 990 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
38
39
40
41
42
43
{
"name": "shader-particle-engine",
"description": "A GLSL-focused particle engine for THREE.js.",
"version": "1.1.0",
"author": "Luke Moody (https://github.com/squarefeet/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/squarefeet/ShaderParticleEngine.git"
},
"bugs": {
"url": "https://github.com/squarefeet/ShaderParticleEngine/issues"
},
"homepage": "https://github.com/squarefeet/ShaderParticleEngine/",
"keywords": [
"three.js",
"webgl",
"particle",
"particles",
"glsl",
"shader",
"spe"
],
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-uglify": "^0.9.2",
"grunt-docco2": "^0.2.1",
"grunt-jsdoc": "^1.0.0"
},
"scripts": {
"test": "grunt",
"build": "grunt"
},
"main": "build/SPE.min.js",
"directories": {
"doc": "docs",
"example": "examples"
},
"dependencies": {
"three": "^0.118.3"
}
}