-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.3 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.3 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
{
"name": "tree-xyz-webgl2-engine",
"version": "0.1.1",
"description": "This package contains the code to utilize webgl2's graphics capabilities.",
"main": "index.js",
"files": [
"dist/**/*"
],
"scripts": {
"test": "ts-node --project ./tsconfig.json node_modules/jasmine/bin/jasmine --config=spec/support/jasmine.json",
"version": "npm run test && npm audit && npm run build && git add -A dist",
"postversion": "git push",
"build": "npm test && tsc -p tsconfig.json",
"browserify-build": "npm run build && browserify src/index.ts > dist/webgl2-engine-bundle.js",
"precommit": "npm version patch",
"build-prod-minor": "npm version minor",
"build-prod-major": "npm version major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Treee/webgl2-engine.git"
},
"author": "Tree",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Treee/webgl2-engine/issues"
},
"homepage": "https://github.com/Treee/webgl2-engine#readme",
"devDependencies": {
"@types/three": "^0.93.31",
"@types/jasmine": "^2.8.6",
"browserify": "^16.5.0",
"jasmine": "^3.5.0",
"jasmine-spec-reporter": "^4.2.1",
"ts-node": "^8.5.4",
"typescript": "^3.6.4"
},
"dependencies": {
"three": "^0.99.0",
"twgl.js": "^4.13.1"
}
}