-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.26 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
{
"name": "@imin/speck",
"version": "0.3.0",
"description": "Specification for TypeScript types, Run-time validation & test-data generation",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"prepare": "npm run snyk-protect && husky install",
"run-tests": "npx ts-mocha tests/**/*.ts",
"test": "tsc && npm run run-tests",
"build": "tsc",
"snyk-protect": "snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imin-ltd/speck.git"
},
"author": "Luke Winship <[email protected]> (https://github.com/lukehesluke)",
"license": "ISC",
"bugs": {
"url": "https://github.com/imin-ltd/speck/issues"
},
"homepage": "https://github.com/imin-ltd/speck#readme",
"devDependencies": {
"@types/chai": "^4.2.16",
"@types/lodash": "^4.14.149",
"@types/mocha": "^9.1.0",
"chai": "^4.3.4",
"husky": "^7.0.4",
"mocha": "^9.2.0",
"ts-mocha": "^9.0.2",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@snyk/protect": "^1.1232.0",
"fast-check": "^1.21.0",
"fp-ts": "^2.16.1",
"io-ts": "^2.2.20",
"io-ts-reporters": "^2.0.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"snyk": "^1.1232.0"
}
}