-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.16 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
{
"name": "@safelytyped/core-types",
"version": "0.5.0",
"description": "Core safe types for Typescript",
"repository": "github:SafelyTyped/ts-core-types",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/types/index.d.ts",
"scripts": {
"build": "npm run clean && tsc -b ./tsconfig-cjs.json ./tsconfig-esm.json ./tsconfig-types.json",
"lint": "npx eslint .",
"prepublishOnly": "npm run test",
"prepack": "npm run build && npm run lint && rimraf lib/**/_*",
"test": "npm run build && mocha",
"cover": "npm run clean && c8 --cache=false npm run test",
"clean": "rimraf coverage lib",
"docs": "npm run build && npx typedoc",
"api-extractor": "npm run clean && tsc && api-extractor run --local --verbose"
},
"contributors": [
"Stuart Herbert <[email protected]> (https://ganbarodigital.com)"
],
"keywords": [
"architypes",
"booleanish",
"contracts",
"data guarantees",
"data guards",
"defensive programming",
"entities",
"error reporting",
"hashmap",
"nominals",
"operators",
"protocols",
"refined types",
"safe types",
"type guards",
"type refinement",
"validation",
"value objects"
],
"files": [
"lib/**/*",
"CHANGELOG.md",
"LICENSE.md"
],
"license": "BSD-3-Clause",
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@microsoft/api-documenter": "^7.13.28",
"@microsoft/api-extractor": "^7.17.1",
"@types/chai": "^4.3",
"@types/mocha": "^10.0",
"@types/node": "^20.0",
"@typescript-eslint/eslint-plugin": "^8.0",
"@typescript-eslint/parser": "^8.0",
"c8": "^9.1.0",
"chai": "^4.3.0",
"chai-bytes": "^0.1.2",
"chai-string": "^1.5.0",
"eslint": "^9.0",
"globals": "^15.13.0",
"mocha": "^10.0",
"rimraf": "^3.0.0",
"ts-node": "^10.9",
"tsconfig-paths": "^4.2.0",
"typedoc": "^0.26",
"typedoc-theme-hierarchy": "^4.1.2",
"typescript": "^5.0"
},
"c8": {
"all": true,
"include": [
"src/**/*.ts"
],
"exclude": [
"**/_fixtures/*",
"**/*.spec.ts",
"**/*.type.ts"
]
}
}