forked from cginternals/webgl-operate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 3.37 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "webgl-operate",
"version": "0.3.8",
"license": "MIT",
"description": "A TypeScript based WebGL rendering framework.",
"author": "CG Internals",
"homepage": "https://webgl-operate.org",
"jsdelivr": "./dist/webgl-operate.js",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/cginternals/webgl-operate/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/cginternals/webgl-operate.git"
},
"main": "./lib/webgl-operate.js",
"types": "./lib/webgl-operate.d.ts",
"sideEffects": [
"./source/polyfill.ts"
],
"maintainers": [
{
"name": "Daniel Limberger",
"email": "[email protected]"
}
],
"devDependencies": {
"@types/chai": "~4.1.4",
"@types/chai-spies": "~0.0.1",
"@types/gl-matrix": "~2.4.1",
"@types/mocha": "~5.2.5",
"@types/sinon": "~4.3.3",
"chai": "~4.1.2",
"chai-spies": "~1.0.0",
"coveralls": "~3.0.2",
"cross-env": "~5.2.0",
"git-revision-webpack-plugin": "~3.0.3",
"gl-matrix": "~2.7.1",
"glob": "~7.1.2",
"http-server": "~0.11.1",
"jsonschema": "~1.2.4",
"mocha": "~5.2.0",
"mocha-junit-reporter": "~1.17.0",
"mocha-multi-reporters": "~1.1.7",
"npm-run-all": "~4.1.3",
"nyc": "~12.0.2",
"pug": "~2.0.3",
"rimraf": "~2.6.2",
"rxjs": "~6.2.2",
"sinon": "~4.5.0",
"source-map-support": "~0.5.6",
"ts-loader": "~4.4.1",
"ts-node": "~5.0.1",
"tslint": "~5.11.0",
"typedoc": "~0.11.1",
"typescript": "~3.0.1",
"webpack": "~4.16.5",
"webpack-bundle-analyzer": "~2.13.1",
"webpack-cli": "~3.1.0",
"webpack-glsl-loader": "~1.0.1",
"webpack-rxjs-externals": "~2.0.0"
},
"peerDependencies": {
"rxjs": "~6.2.2"
},
"scripts": {
"build": "webpack-cli --mode development && node pugconfig.js",
"build-watch": "webpack-cli --mode production --watch",
"start": "http-server ./build -a localhost -c-1",
"start-watch": "run-p build-watch pug-watch start",
"build-dist": "webpack-cli --mode production --config webpack.config.dist.js",
"build-lib": "webpack-cli --mode production --config webpack.config.lib.js",
"pug-watch": "node pugconfig.js --watch",
"cleanup": "rimraf ./dist ./lib ./build",
"lint": "tslint --project tsconfig.json --force --format stylish --config tslint.json",
"test": "mocha",
"test-nyc": "nyc mocha",
"test-watch": "mocha --watch",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"doc": "typedoc source/webgl-operate.ts",
"ci": "run-p build-dist build-lib lint test-nyc",
"analyze": "cross-env ANALYZE=true webpack-cli --mode production --config webpack.config.js",
"postversion": "git push && git push --tags",
"prepack": "npm run preversion",
"preversion": "npm install && npm run ci"
},
"keywords": [
"webgl",
"rendering",
"canvas",
"engine",
"2d",
"3d",
"multiframe",
"path-tracing",
"ray-tracing",
"ray-marching",
"voxel",
"glTF",
"viewer"
]
}