-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.77 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.77 KB
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
67
68
69
{
"name": "@lab-code/moonphase",
"version": "1.0.4",
"description": "The package allow you to calculate moon phase by date.",
"files": [
"lib/**/*"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">= 14.15 <15"
},
"devDependencies": {
"@types/jest": "~26.0.19",
"@types/node": "~14.14.20",
"@typescript-eslint/eslint-plugin": "~4.12.0",
"@typescript-eslint/parser": "~4.12.0",
"eslint": "~7.17.0",
"eslint-config-prettier": "~7.1.0",
"eslint-plugin-jest": "~24.1.3",
"jest": "~26.6.3",
"nodemon": "^2.0.7",
"prettier": "~2.2.1",
"rimraf": "~3.0.2",
"ts-jest": "~26.4.4",
"tslib": "^2.1.0",
"tsutils": "~3.18.0",
"typescript": "~4.1.3"
},
"scripts": {
"start": "nodemon build/index.js",
"clean": "rimraf coverage lib tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"moonphase",
"moon",
"phase",
"calculation",
"calc",
"lunar"
],
"author": "Nikita Galkin <n.galkin.official@gmail.com>",
"license": "Apache-2.0",
"dependencies": {},
"volta": {
"node": "14.15.0"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NikitaSmithTheOne/moonphase.git"
},
"bugs": {
"url": "https://github.com/NikitaSmithTheOne/moonphase/issues"
},
"homepage": "https://github.com/NikitaSmithTheOne/moonphase#readme"
}