-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.11 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
{
"name": "OrbitViewer",
"version": "2.0.0",
"description": "A tool to visualize the orbits of planets and near earth objects",
"main": "main.js",
"author": "Don Smith <[email protected]>",
"homepage": "https://stemn.com/project/553738f3bfc5bec20847ca2b",
"license": "Apache-2.0",
"scripts": {
"test": "tape tests/**/*.tests.js | tap-spec",
"watch": "watchify viewer.js -o main.js --poll --verbose",
"build": "browserify viewer.js -o main.js"
},
"dependencies": {
"angle-functions": "^0.2.0",
"dom-events": "^0.1.1",
"fabric": "^1.6.5",
"xyzed": "^0.1.0"
},
"devDependencies": {
"browserify": "^9.0.8",
"tap-spec": "^4.1.1",
"tape": "^4.6.2",
"watchify": "^3.1.2"
},
"author": "Don Smith <[email protected]>",
"homepage": "https://stemn.com/projects/orbit-viewer",
"license": "GPLv2",
"keywords": [
"orbit",
"neo",
"nasa",
"jpl",
"visualization"
],
"repository": {
"type": "git",
"url": "https://github.com/TheOrbitals/OrbitViewer.git"
},
"bugs": {
"url": "https://github.com/TheOrbitals/OrbitViewer/issues"
}
}