-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.98 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
{
"name": "@cowwoc/requirements",
"version": "4.0.8",
"keywords": [
"preconditions",
"postconditions",
"assert",
"assertion",
"design-by-contract",
"requirements",
"requirements.js"
],
"description": "A fluent API for enforcing design contracts with automatic message generation.",
"author": "Gili Tzabari <[email protected]>",
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/cowwoc/requirements.js/"
},
"scripts": {
"clean": "node node_modules/tsx/dist/cli.mjs build/Project.mts clean",
"build": "node node_modules/tsx/dist/cli.mjs --enable-source-maps build/Project.mts build"
},
"browser": "browser/index.js",
"module": "node/index.mjs",
"types": "node/index.d.mts",
"exports": {
".": {
"import": "./node/index.mjs"
}
},
"sideEffects": false,
"dependencies": {
"chalk": "^5.3.0",
"diff": "7.0.0",
"lodash.isequal": "^4.5.0",
"strip-ansi": "^7.1.0"
},
"license": "Apache-2.0",
"packageManager": "[email protected]",
"devDependencies": {
"@eslint/js": "^9.14.0",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.1",
"@types/chai": "^5.0.1",
"@types/diff": "^6.0.0",
"@types/eslint": "^9.6.1",
"@types/lodash.debounce": "^4.0.9",
"@types/lodash.isequal": "^4.5.8",
"@types/lodash.padstart": "^4.6.9",
"@types/minimist": "^1.2.5",
"@types/mocha": "^10.0.9",
"@types/node": "^22.9.0",
"c8": "^10.1.2",
"chai": "^5.1.2",
"chokidar": "^4.0.1",
"diary": "^0.4.5",
"eslint": "^9.14.0",
"eslint-plugin-tsdoc": "^0.3.0",
"glob": "^11.0.0",
"lodash.debounce": "^4.0.8",
"lodash.padstart": "^4.6.1",
"minimist": "^1.2.8",
"mocha": "^10.8.2",
"rollup": "^4.24.4",
"source-map-support": "^0.5.21",
"terser": "^5.36.0",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"typedoc": "^0.26.11",
"typedoc-plugin-mdn-links": "^3.3.6",
"typedoc-plugin-missing-exports": "^3.0.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
}
}