forked from david-rc-dayton/pious-squid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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": "pious-squid",
"version": "2.3.0",
"description": "Orbital mechanics and satellite mission analysis library, for NodeJS and the browser.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/david-rc-dayton/pious-squid.git"
},
"scripts": {
"build": "tsc",
"bundle": "browserify dist/index.js -s PiousSquid -o bundle/pious-squid.js",
"clean-build": "npm run clean && npm run build",
"clean-bundle": "npm run clean-build && npm run bundle && npm run minify",
"clean": "rimraf dist bundle pious-squid-*.tgz",
"minify": "uglifyjs bundle/pious-squid.js > bundle/pious-squid.min.js",
"prepack": "npm run clean-bundle",
"test": "mocha ./dist/test/**/*.js",
"watch": "tsc --watch"
},
"keywords": [
"astrodynamics",
"coordinates",
"look-angles",
"orbital-mechanics",
"propagator",
"satellite",
"typescript"
],
"author": "David RC Dayton",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"browserify": "^16.2.3",
"mocha": "^5.2.0",
"rimraf": "^2.6.3",
"typescript": "^3.2.2",
"uglify-js": "^3.4.9"
}
}