-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
63 lines (63 loc) · 1.97 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
{
"name": "nanogl",
"version": "2.3.2",
"description": "webgl micro framework ",
"main": "nanogl.js",
"scripts": {
"test": "tsc && karma start && karma start --webgl-version=2",
"test_gl1": "tsc && karma start",
"test_gl2": "tsc && karma start --webgl-version=2",
"docs": "jsdoc program.js texture.js fbo.js arraybuffer.js indexbuffer.js bufferutils.js -R README.md -d ../nanogl_gh_pages -t node_modules/minami",
"gztest": "browserify nanogl.js -o gztest.js && uglifyjs --screw-ie8 -m -c warnings=false -o gztest.min.js -- gztest.js && gzip -k -9 gztest.min.js && stat -f%z gztest.min.js.gz && rm ./*gztest*",
"perf": "browserify -t [ stringify --extensions [.vert .frag] ] -o test/perf/main.js test/perf/index.js",
"build-docs": "typedoc && del tempdocs/** '!tempdocs/data.json' && mv tempdocs/* docs/ && rm -rf tempdocs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/plepers/nanogl.git"
},
"keywords": [
"webgl"
],
"author": "Pierre Lepers",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/plepers/nanogl/issues"
},
"homepage": "https://github.com/plepers/nanogl#readme",
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env"
]
}
]
]
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"del-cli": "^5.0.0",
"expect.js": "^0.3.1",
"karma": "^4.4.1",
"karma-browserify": "^6.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^0.1.7",
"karma-mocha": "^1.3.0",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^2.0.2",
"mocha": "^6.2.2",
"sinon": "^7.5.0",
"stringify": "^5.2.0",
"typedoc": "^0.23.24",
"typedoc-plugin-rename-defaults": "^0.6.4",
"typescript": "^4.9.5",
"watchify": "^3.11.1",
"when": "^3.7.8"
}
}