-
Notifications
You must be signed in to change notification settings - Fork 162
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "webgl-inspector",
"version": "1.0.0",
"description": "An inspector for WebGL",
"main": "index.js",
"scripts": {
"build": "webpack --config core/webpack.config.js --display-modules"
},
"babel": {
"presets": [
"env"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/benvanik/WebGL-Inspector.git"
},
"keywords": [
"webgl",
"webgl2"
],
"author": "Ben Vanik",
"license": "MIT",
"bugs": {
"url": "https://github.com/benvanik/WebGL-Inspector/issues"
},
"homepage": "https://github.com/benvanik/WebGL-Inspector#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-loader": "^6.2.7",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-polyfill": "^6.16.0",
"babel-preset-env": "^1.1.4",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"exports-loader": "^0.6.3",
"imports-loader": "^0.7.0",
"webpack": "^1.14.0",
"webpack-load-plugins": "^0.1.2"
}
}