-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
38 lines (38 loc) · 955 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
38
{
"name": "mini3d",
"version": "0.1.0",
"description": "A tiny webGL library",
"main": "mini3d.js",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"dev": "npm-run-all --parallel start watch",
"start": "serve build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/happyfire/mini3d.js.git"
},
"keywords": [
"webGL"
],
"author": "happyfire",
"license": "ISC",
"bugs": {
"url": "https://github.com/happyfire/mini3d.js/issues"
},
"homepage": "https://github.com/happyfire/mini3d.js#readme",
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"core-js": "^3.2.1",
"npm-run-all": "^4.1.5",
"rollup": "^1.21.4",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.2",
"serve": "^11.2.0"
},
"dependencies": {}
}