-
-
Notifications
You must be signed in to change notification settings - Fork 148
/
package.json
64 lines (64 loc) · 1.86 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
{
"name": "ts-toolbelt",
"version": "9.6.0",
"description": "TypeScript's largest utility library",
"keywords": [
"safe",
"tools",
"types",
"typesafe",
"typescript"
],
"homepage": "https://github.com/millsp/ts-toolbelt",
"repository": {
"type": "git",
"url": "https://github.com/millsp/ts-toolbelt"
},
"license": "Apache-2.0",
"author": {
"name": "Pierre-Antoine Mills",
"url": "https://github.com/millsp"
},
"main": "out/index.js",
"types": "out/index.d.ts",
"files": [
"out"
],
"scripts": {
"build:clean": "bash scripts/build/clean.sh",
"build:code": "bash scripts/build/code.sh",
"build:docs": "bash scripts/build/docs.sh",
"build:types": "bash scripts/build/types.sh",
"ci:branch:ad": "bash scripts/ci/branch/ad.sh",
"ci:branch:bd": "bash scripts/ci/branch/bd.sh",
"ci:docs:ad": "bash scripts/ci/docs/ad.sh",
"ci:docs:bd": "bash scripts/ci/docs/bd.sh",
"ci:master:ad": "bash scripts/ci/master/ad.sh",
"ci:master:bd": "bash scripts/ci/master/bd.sh",
"ci:test:ad": "bash scripts/ci/test/ad.sh",
"ci:test:bd": "bash scripts/ci/test/bd.sh",
"release": "bash scripts/release.sh",
"test": "bash scripts/test/all.sh",
"test:code": "bash scripts/test/code.sh",
"test:lint": "bash scripts/test/lint.sh",
"test:types": "bash scripts/test/types.sh"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@typescript-eslint/parser": "^4.14.0",
"eledoc": "^0.2.0",
"eslint": "^7.18.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-react": "^7.22.0",
"husky": "^4.3.0",
"npx": "^10.2.0",
"sort-package-json": "^1.48.0",
"standard-version": "^9.1.0",
"ts-node": "^9.1.0",
"tslib": "^2.1.0",
"typedoc": "^0.20.0",
"typescript": "latest"
}
}