-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 896 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
{
"name": "learnyouaframe",
"version": "0.0.1",
"description": "Learn. Build. Hack. A-frame workshopper",
"main": "./bin/index.js",
"scripts": {
"start": "node ./bin/index.js",
"dev": "node ./bin/dev-server.js",
"create-exercise": "node ./bin/create-exercise-dir.js",
"build": "node ./bin/build-server.js",
"update-dom-skeleton": "./bin/update-dom-skeleton.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"learnyouaframe": "./bin/index.js"
},
"preferGlobal": "true",
"repository": {
"type": "git",
"url": "git+https://github.com/webvr-india/learnyouaframe.git"
},
"keywords": [
"aframe",
"tutorial"
],
"author": "webvr-india",
"license": "MIT",
"bugs": {
"url": "https://github.com/webvr-india/learnyouaframe/issues"
},
"homepage": "https://github.com/webvr-india/learnyouaframe#readme"
}