forked from 3DStreet/3dstreet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.18 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": "streetmix3d",
"version": "0.0.1",
"description": "Streetmix3D creates 3D visualizations of your 2D [Streetmix.net](https://streetmix.net) streets using A-Frame and WebXR.",
"main": "index.js",
"scripts": {
"test": "nyc --reporter=lcov --reporter=text mocha --recursive --full-trace",
"test:watch": "mocha --recursive --full-trace --watch",
"lint": "semistandard -v | snazzy",
"lint:tested": "semistandard -v 'src/tested/**/*.js' 'test/**/*.js' | snazzy",
"lint:fix": "semistandard --fix",
"start": "http-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kfarr/streetmix3d.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/kfarr/streetmix3d/issues"
},
"homepage": "https://github.com/kfarr/streetmix3d#readme",
"semistandard": {
"ignore": [
"/src/lib/"
]
},
"dependencies": {},
"devDependencies": {
"approvals": "^3.0.5",
"http-server": "^0.12.3",
"jsdom": "^16.2.2",
"jsdom-global": "^3.0.2",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"pretty": "^2.0.0",
"rewire": "^5.0.0",
"semistandard": "^14.2.0",
"snazzy": "^8.0.0"
}
}