-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.04 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.04 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
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
{
"author": "ldh",
"bugs": {
"url": "https://github.com/laopo001/hypergl/issues"
},
"dependencies": {
"clone": "^2.1.2",
"cross-env": "^5.2.0",
"howler": "^2.0.15",
"isomorphic-fetch": "^2.2.1",
"laopo001-ammo": "^0.0.3",
"reflect-metadata": "^0.1.12"
},
"description": "...",
"devDependencies": {
"@types/handlebars": "^4.0.39",
"@types/howler": "^2.0.5",
"@types/jest": "^24.0.9",
"@types/node": "^12.0.0",
"@types/react": "^16.8.7",
"ali-oss": "^5.1.1",
"antd": "^3.15.0",
"browser-sync": "^2.18.12",
"browser-sync-webpack-plugin": "^2.2.2",
"cache-loader": "^1.2.2",
"chai": "~3.2.0",
"co": "^4.6.0",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^2.1.1",
"gulp": "^3.9.1",
"gulp-replace": "^1.0.0",
"handlebars": "^4.0.11",
"handlebars-loader": "^1.7.0",
"jest": "^22.4.3",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-detect-browsers": "~2.0.1",
"karma-firefox-launcher": "~0.1.6",
"karma-ie-launcher": "~0.2.0",
"karma-mocha": "^1.3.0",
"karma-safari-launcher": "~0.1.1",
"karma-typescript": "^3.0.13",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"minimist": "^1.2.0",
"mocha": "~2.2.5",
"pre-commit": "^1.2.2",
"raw-loader": "^0.5.1",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"router5": "^7.0.2",
"router5-plugin-browser": "^7.0.2",
"router5-plugin-persistent-params": "^7.0.2",
"style-loader": "^0.23.1",
"thread-loader": "^1.1.5",
"ts-jest": "^23.1.3",
"ts-loader": "4.2.0",
"tslint": "^5.13.1",
"typescript": "^3.2.2",
"webpack": "4.6.0",
"webpack-cli": "^3.1.1"
},
"engines": {
"node": ">= 0.6.12"
},
"keywords": [
"game engine",
"webgl",
"webgl2",
"3d"
],
"license": "MIT",
"main": "lib/src/index.js",
"name": "hypergl",
"pre-commit": [
"lint",
"test",
"tsc"
],
"repository": {
"type": "git",
"url": "https://github.com/laopo001/hypergl"
},
"scripts": {
"build": "webpack --colors",
"build:prod": "webpack --colors -p",
"lint": "node node_modules/tslint/bin/tslint -c tslint.json src/**/*.ts --exclude **/src/third_party/**",
"prepublishOnly": "npm run tsc && npm run build && gulp move_shader_file",
"start": "webpack --config webpack.demo.js --colors --watch",
"test": "jest",
"test:browser": "webpack --colors && gulp replaceTests && karma start",
"tsc": "tsc -p tsconfig.compiler.json && gulp movejs",
"version": "gulp version",
"commit": "gulp commit"
},
"types": "lib/src/index.d.ts",
"version": "0.0.1-nightly.20190320.3",
"files": [
"/lib"
]
}