-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 916 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 916 Bytes
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
{
"name": "fun-with-webgl",
"version": "0.0.1",
"description": "just a gym with the purpose of learning webgl.",
"main": "index.js",
"dependencies": {
"gl-matrix": "^2.3.2",
"png.js": "^0.2.1"
},
"devDependencies": {
"browserify": "^14.3.0",
"concurrently": "^3.4.0",
"http-server": "^0.10.0",
"opn-cli": "^3.1.0"
},
"scripts": {
"build": "node node_modules/browserify/bin/cmd.js index.js -o bundle.js",
"start": "npm run build && npm run open",
"open": "concurrently \"http-server -a localhost -p 8001\" \"opn http://localhost:8001/index.html\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/naighes/fun-with-webgl.git"
},
"author": "Nicola Baldi (@naighes)",
"license": "ISC",
"bugs": {
"url": "https://github.com/naighes/fun-with-webgl/issues"
},
"homepage": "https://github.com/naighes/fun-with-webgl#readme"
}