-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.93 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
{
"name": "@sffjunkie/astral",
"version": "2.1.0",
"description": "calculations for the position of the sun and the moon",
"main": "dist/index.js",
"files": [
"dist/*.js"
],
"scripts": {
"clean": "rimraf dist docs",
"lint": "eslint src/**/*.ts",
"test": "mocha --require ts-node/register ./src/**/*.spec.ts",
"test-watch": "mocha --require ts-node/register --watch --watch-files ./src/**/*.spec.ts",
"build": "rimraf dist && tsc",
"build-docs": "rimraf docs && typedoc --exclude ./src/**/*.spec.ts --media ./src/doc/media --out docs ./src/astral/ && touch docs/.nojekyll",
"publish-docs": "git subtree push --prefix docs origin gh-pages"
},
"keywords": [
"sun",
"moon",
"sunrise",
"sunset",
"dawn",
"dusk",
"noon",
"midnight",
"rahukalaam"
],
"author": "Simon Kennedy <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/sffjunkie/astral-ts.git"
},
"dependencies": {
"luxon": "^1.22.0"
},
"devDependencies": {
"@types/assert": "^1.4.6",
"@types/chai": "^4.2.9",
"@types/luxon": "^1.21.0",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.6",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"chai": "^4.2.0",
"chai-datetime": "^1.5.0",
"eslint": "^6.8.0",
"eslint-plugin-tsdoc": "^0.2.3",
"mocha": "^7.1.0",
"mocha-typescript": "^1.1.17",
"npm-pack": "^1.0.0",
"nyc": "^15.0.0",
"rewire": "^4.0.1",
"rimraf": "^3.0.2",
"ts-node": "^8.6.2",
"typedoc": "^0.16.10",
"typescript": "^3.8.2"
},
"mocha": {
"no-opts": true,
"extension": "ts",
"color": true
}
}