-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.81 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "aframe-geo-projection-component",
"version": "2.1.0",
"description": "An A-Frame component for creating maps in VR using d3-geo projections",
"main": "index.js",
"unpkg": "dist/aframe-geo-projection-component.min.js",
"scripts": {
"dev": "budo index.js:dist/aframe-geo-projection-component.min.js --port 7000 --live --open",
"dist": "webpack index.js dist/aframe-geo-projection-component.js && webpack -p index.js dist/aframe-geo-projection-component.min.js",
"lint": "semistandard -v | snazzy",
"lint:fix": "semistandard --fix -v | snazzy",
"prepublish": "npm run dist",
"ghpages": "NODE_DEBUG=gh-pages gh-pages -d ./ -s '{dist/**,examples/**,index.html}' -m \"Github Pages $(date +\"%d-%h-%Y %l:%M:%S %p\") deployment\"",
"start": "npm run dev",
"test": "karma start ./tests/karma.conf.js",
"test:firefox": "karma start ./tests/karma.conf.js --browsers Firefox",
"test:chrome": "karma start ./tests/karma.conf.js --browsers Chrome",
"test:ci": "karma start ./tests/karma.conf.js --browsers Firefox --single-run",
"test:ci:coveralls": "npm run test:ci && cat ./coverage/**/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EarthlingInteractive/aframe-geo-projection-component.git"
},
"keywords": [
"aframe",
"aframe-component",
"aframe-vr",
"vr",
"mozvr",
"webvr",
"geo-projection"
],
"author": "Steve Brudz <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/EarthlingInteractive/aframe-geo-projection-component/issues"
},
"homepage": "https://github.com/EarthlingInteractive/aframe-geo-projection-component#readme",
"devDependencies": {
"aframe": "^0.8.2",
"browserify": "^13.0.0",
"browserify-istanbul": "^3.0.1",
"budo": "^11.5.0",
"chai": "^4.1.2",
"chai-shallow-deep-equal": "^1.3.0",
"coveralls": "^3.0.2",
"gh-pages": "^2.0.1",
"karma": "^3.1.3",
"karma-browserify": "^6.0.0",
"karma-chai-shallow-deep-equal": "^0.0.4",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon-chai": "^1.3.3",
"mocha": "^5.0.1",
"randomcolor": "^0.4.4",
"semistandard": "^13.0.1",
"shelljs": "^0.7.0",
"shx": "^0.1.1",
"sinon": "^4.1.6",
"sinon-chai": "^2.14.0",
"snazzy": "^4.0.0",
"webpack": "^1.13.0"
},
"semistandard": {
"globals": [
"AFRAME",
"THREE"
],
"ignore": [
"examples/build.js",
"dist/**"
]
},
"dependencies": {
"d3-geo": "^1.10.0",
"d3-geo-projection": "^2.4.0",
"d3-scale": "^2.0.0",
"topojson-client": "^3.0.0"
}
}