-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
31 lines (31 loc) · 885 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
{
"name": "shaderfrog-runtime",
"version": "0.2.0",
"description": "ShaderFrog runtime library",
"main": "lib/shaderfrog-runtime.js",
"scripts": {
"compile": "babel --out-file lib/shaderfrog-runtime.js src/ShaderRuntime.js",
"test": "echo 'Error: no test specified' && exit 1",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/AndrewRayCode/ShaderFrog-Runtime.git"
},
"author": "Andrew Ray",
"license": "MIT",
"bugs": {
"url": "https://github.com/AndrewRayCode/ShaderFrog-Runtime/issues"
},
"homepage": "https://github.com/AndrewRayCode/ShaderFrog-Runtime#readme",
"dependencies": {
"babel": "^5.8.35",
"babel-core": "^5.8.21",
"babel-loader": "^5.3.2",
"webpack": "^1.11.0",
"webpack-notifier": "^1.2.1"
},
"peerDependencies": {
"three": "~0.84.0"
}
}