-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
42 lines (42 loc) · 1.05 KB
/
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
39
40
41
42
{
"name": "aframe-watcher",
"version": "1.4.0",
"description": "A companion watch server to receive and save changes coming from the A-Frame Inspector.",
"main": "index.js",
"scripts": {
"start": "nodemon index.js -- tests/*.html",
"test": "NODE_ENV=test mocha --watch tests/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supermedium/aframe-watcher.git"
},
"keywords": [
"aframevr",
"aframe",
"webvr",
"webxr"
],
"author": "Kevin Ngo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/supermedium/aframe-watcher/issues"
},
"homepage": "https://github.com/supermedium/aframe-watcher#readme",
"dependencies": {
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"glob": "^7.1.3",
"lodash": "^4.17.11",
"lodash.uniq": "^4.5.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.7",
"prompt": "^1.0.0",
"prompt-confirm": "^2.0.4"
},
"bin": {
"aframe-watcher": "./index.js"
}
}