-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.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
{
"name": "@skywardapps/ts-united-types",
"version": "1.0.0",
"description": "Types and classes for tracking simple units (meters, seconds, acres, etc)",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"homepage": "",
"keywords": [],
"author": "Skyward App Company, LLC",
"license": "MIT",
"scripts": {
"test": "jest",
"lint": "eslint src/**/*.{js,jsx,ts,tsx,json}",
"build": "eslint src/**/*.{js,jsx,ts,tsx,json} && tsc --declaration --declarationMap --sourceMap && typedoc --plugin typedoc-plugin-markdown --out docs/generated src/index.ts"
},
"devDependencies": {
"@types/convert-units": "^2.3.5",
"@types/jest": "^29.0.3",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"jest": "^29.0.3",
"ts-jest": "^29.0.2",
"typedoc": "^0.23.15",
"typedoc-plugin-markdown": "^3.13.6",
"typescript": "^4.8.3"
},
"dependencies": {
"convert-units": "^2.3.4"
}
}