-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"name": "@cougargrades/types",
"version": "0.0.100",
"description": "TypeScript types and classes for use across multiple projects",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@cougargrades/publicdata": "^1.0.0-20210727071630",
"@types/node": "^14.0.13",
"@types/number-to-words": "^1.2.0",
"core-js-pure": "^3.12.1",
"itertools": "^1.6.0",
"number-to-words": "^1.2.4",
"typescript-is": "^0.17.1"
},
"devDependencies": {
"prettier": "^2.0.5",
"ttypescript": "^1.5.15",
"typedoc": "^0.23.10",
"typescript": "^4.2.0"
},
"scripts": {
"build": "ttsc",
"build:check": "ttsc --noEmit",
"build:docs": "typedoc",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx}'",
"clean": "rm -r dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cougargrades/types.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/cougargrades/types/issues"
},
"homepage": "https://github.com/cougargrades/types#readme"
}