-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.14 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
{
"name": "gps-time",
"version": "1.0.9",
"description": "Small utility to convert times between GPS epoch (midnight January 6, 1980) and Unix epoch (midnight January 1, 1970), taking into account leap seconds.",
"main": "gps-time.js",
"scripts": {
"test": "mocha test",
"minify": "./node_modules/uglify-js/bin/uglifyjs -nmf -o gps-time-min.js gps-time.js",
"push-publish": "git push && git push --tags && npm publish",
"major": "npm version major && npm run push-publish",
"minor": "npm version minor && npm run push-publish",
"patch": "npm version patch && npm run push-publish",
"bump": "npm update && npm audit fix && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidcalhoun/gps-time.js.git"
},
"keywords": [
"gps",
"unix",
"time",
"epoch",
"1980",
"1970"
],
"author": "David Calhoun",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidcalhoun/gps-time.js/issues"
},
"homepage": "https://github.com/davidcalhoun/gps-time.js",
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^9.2.0",
"uglify-js": "^3.12.4"
}
}