-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1023 Bytes
/
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
{
"name": "webglue",
"version": "1.0.15",
"description": "Minimal WebGL wrapper library",
"main": "lib/",
"scripts": {
"start": "webpack-dev-server --hot --inline",
"test": "npm run lint",
"lint": "eslint src/",
"build": "webpack --config=webpack.config.js --progress --profile --colors && babel src -d lib --copy-files"
},
"author": "Kkiro",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"css-loader": "^2.1.0",
"eslint": "^5.12.0",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"import-glob-loader": "^1.1.0",
"json-loader": "^0.5.7",
"raw-loader": "^1.0.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"gl-matrix": "^3.0.0"
}
}