-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.34 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.34 KB
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
{
"name": "nanogl-state",
"version": "2.1.0",
"description": "Efficient webgl context state management",
"scripts": {
"test": "tsc && karma start && karma start --webgl-version=2",
"docs": "typedoc && del docs/** '!docs/data.json'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/plepers/nanogl-state.git"
},
"keywords": [
"webgl nanogl"
],
"author": "Pierre Lepers",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/plepers/nanogl-state/issues"
},
"homepage": "https://github.com/plepers/nanogl-state#readme",
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env"
]
}
]
]
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"babelify": "^10.0.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"
}
}