-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
88 lines (88 loc) · 2.01 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@buge/ts-units",
"version": "1.2.3",
"description": "Physical Units for TypeScript",
"author": "Philipp Bunge <[email protected]>",
"license": "Apache-2.0",
"keywords": [
"physical",
"units",
"units",
"measure",
"measures",
"measurement",
"measurements",
"quantity",
"quantities",
"amount",
"amounts",
"SI",
"ISQ",
"metrology"
],
"repository": {
"type": "git",
"url": "git+https://github.com/buge/ts-units.git"
},
"bugs": {
"url": "https://github.com/buge/ts-units/issues"
},
"homepage": "https://github.com/buge/ts-units#readme",
"files": [
"angle",
"area",
"electric",
"energy",
"force",
"frequency",
"length",
"luminous",
"magnetic",
"mass",
"power",
"pressure",
"radioactive",
"scalar",
"speed",
"temperature",
"time",
"volume",
"*.d.ts",
"*.js",
"*.js.map"
],
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rm -r ./build",
"fix": "prettier --config .prettierrc 'src/**/*.ts' 'test/**/*.ts' --write && eslint --fix src/ test/",
"lint": "eslint",
"test": "mocha -r ts-node/register '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",
"release": "release-it"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"chai": "^4.3.7",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"kelonio": "^0.9.0",
"mocha": "^10.2.0",
"mocha-multi": "^1.1.7",
"prettier": "^3.0.0",
"release-it": "*",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
}
}