-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.44 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
{
"name": "vanilla-webgl",
"version": "0.0.1",
"description": "WebGL without any Framework",
"main": "src/index.js",
"scripts": {
"test": "mocha --reporter dot --recursive --require ./test/globals --compilers js:babel-core/register test",
"test-ci": "npm run lint && npm test && npm run build",
"build": "rimraf ./dist && mkdirp ./dist && cp ./public/* ./dist && browserify ./src/index.js -t [browserify-shader --parameterize=true babelify] --insert-global-vars global --outfile ./dist/app.js",
"lint": "eslint src test",
"start": "http-server -p 3000 ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidspinat/vanilla-webgl.git"
},
"keywords": [
"webgl"
],
"author": "davidspinat",
"license": "ISC",
"bugs": {
"url": "https://github.com/davidspinat/vanilla-webgl/issues"
},
"homepage": "https://github.com/davidspinat/vanilla-webgl#readme",
"dependencies": {
"babel-core": "^6.7.7",
"babel-plugin-espower": "^2.1.2",
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"browserify-shader": "^0.1.2",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.0",
"eslint-plugin-import": "^1.7.0",
"eslint-plugin-react": "^5.0.1",
"mkdirp": "^0.5.1",
"rimraf": "^2.5.2"
},
"devDependencies": {
"http-server": "^0.9.0",
"sinon": "^1.17.3",
"mocha": "^2.4.5",
"power-assert": "^1.4.1"
}
}