-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.53 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
{
"name": "@buge/solar",
"version": "2.1.0",
"description": "Solar Position",
"author": "Philipp Bunge <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/buge/solar.git"
},
"homepage": "https://github.com/buge/solar#readme",
"scripts": {
"build": "tsc",
"fix": "prettier --config .prettierrc 'src/**/*.ts' --write && eslint --fix src/**/*.ts",
"lint": "eslint",
"test": "mocha -r ts-node/register 'src/**/*_test.ts'",
"prepare": "npm run build",
"prepack": "mv build/* .",
"postpack": "git clean -fd",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run fix && git add -A src",
"postversion": "git push && git push --tags",
"clean": "rm -rf build",
"release": "release-it"
},
"files": [
"deltatpoly.*",
"index.*",
"pressure.*",
"spa.*"
],
"main": "index.js",
"typings": "index.d.ts",
"dependencies": {
"@buge/ts-units": "^1.2.0"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/luxon": "^3.3.1",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"chai": "^4.2.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"luxon": "^3.3.0",
"mocha": "^10.2.0",
"prettier": "^3.0.0",
"release-it": "*",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}