-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.94 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
{
"name": "@final-hill/decorator-contracts",
"version": "0.25.3",
"description": "Code Contracts for TypeScript and ECMAScript classes",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"scripts": {
"prebuild": "npm run lint",
"build": "webpack",
"lint": "eslint src/ --ext .mts --fix",
"test": "globstar -- node --import tsx --test \"src/**/*.test.mts\""
},
"repository": {
"type": "git",
"url": "https://github.com/final-hill/decorator-contracts"
},
"bugs": {
"url": "https://github.com/final-hill/decorator-contracts/issues"
},
"keywords": [
"assertion",
"biconditional",
"behavioral-subtyping",
"code-contracts",
"decorators",
"demands",
"design-by-contract",
"encapsulation",
"exception-handling",
"if-and-only-if",
"invariant",
"liskov-substitution-principle",
"LSP",
"material-implication",
"organized-panic",
"precondition",
"postcondition",
"rescue",
"requires",
"SOLID"
],
"author": "Michael L Haufe <michael.haufe@final-hill.com> (https://final-hill.com)",
"license": "AGPL-3.0-only",
"devDependencies": {
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.57.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-webpack-plugin": "^4.2.0",
"globstar": "^1.0.0",
"ts-loader": "^9.5.1",
"tsx": "^4.15.6",
"typescript": "^5.4.5",
"webpack": "^5.92.0",
"webpack-cli": "^5.1.4"
},
"files": [
"dist"
]
}