-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.96 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
{
"name": "@modern-dev/daylight",
"version": "0.1.0",
"description": "Daylight - is a tiny JavaScript library for basic sun/moon position/times/phase calculations.",
"main": "lib/cjs/index.js",
"module": "lib/es6/index.js",
"typings": "lib/cjs/index.d.ts",
"types": "lib/cjs/index.d.ts",
"scripts": {
"build-cjs": "tsc --module commonjs --outdir ./lib/cjs",
"build-es6": "tsc --module es6 --outDir ./lib/es6",
"build": "npm run build-cjs && npm run build-es6",
"lint": "eslint ./*.ts",
"mocha": "cross-env TS_NODE_FILES=true mocha --exit -r ts-node/register --colors ./*.spec.ts",
"test": "npm run lint && npm run mocha",
"pub": "npm run test && npm run build && npm publish --access public",
"coverage:unit": "nyc npm run test",
"coverage:report": "nyc report --reporter=json > coverage/coverage.json",
"coverage": "npm run coverage:unit && npm run coverage:report"
},
"author": "Bohdan Shtepan <bohdan@modern-dev.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/modern-dev/daylight.git"
},
"keywords": [
"daylight",
"sunrise",
"sunset",
"moonrise",
"moonset",
"astro",
"phase",
"fraction",
"twilight",
"dawn",
"dusk",
"nautical",
"civil",
"astronomical"
],
"bugs": {
"url": "https://github.com/modern-dev/daylight/issues"
},
"homepage": "https://github.com/modern-dev/daylight#readme",
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/chai-almost": "^1.0.1",
"@types/chai-datetime": "0.0.33",
"@types/mocha": "^5.2.7",
"@types/node": "^13.1.4",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"chai": "^4.2.0",
"chai-almost": "^1.0.1",
"chai-datetime": "^1.5.0",
"codecov": "^3.6.1",
"cross-env": "^6.0.3",
"eslint": "^6.6.0",
"mocha": "^7.0.0",
"nyc": "^15.0.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.2"
}
}