-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.36 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
{
"name": "runtypes-generate",
"version": "0.4.1",
"description": "Integrate runtypes with property-based testing",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc --pretty",
"test": "npm run build && jest --verbose",
"develop": "jest --watchAll",
"release": "npm run release:patch",
"release:patch": "xyz --increment patch",
"release:minor": "xyz --increment minor",
"release:major": "xyz --increment major"
},
"author": "Andrey Melnikov",
"license": "MIT",
"dependencies": {
"jsverify": "^0.8.2",
"runtypes": "^0.11.0",
"lodash": "^4.17.4",
"@types/lodash": "^4.14.66"
},
"devDependencies": {
"@types/jest": "^18.1.1",
"jest": "^19.0.2",
"ts-jest": "^19.0.0",
"typescript": "2.2.1",
"xyz": "^2.1.0",
"ts-node": "2.1.0"
},
"keywords:": [
"runtime",
"type",
"validation",
"typescript",
"spec",
"runtypes",
"property-based",
"jsverify"
],
"repository": {
"type": "git",
"url": "https://github.com/typeetfunc/runtypes-generate"
},
"jest": {
"verbose": false,
"testRegex": ".*/*.spec.ts$",
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor"
},
"testEnvironment": "node"
},
"files": [
"/lib"
]
}