-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.2 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
{
"name": "tiva",
"version": "0.2.2",
"description": "Expensive plain object type validator leverages TypeScript language service.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/makeflow/tiva.git"
},
"scripts": {
"build": "rimraf bld && tsc --build",
"lint-prettier": "prettier --check .",
"lint": "eslint .",
"test": "yarn lint-prettier && yarn build && yarn lint && jest",
"report-coverage": "cat coverage/lcov.info | coveralls"
},
"main": "bld/library/index.js",
"types": "bld/library/index.d.ts",
"files": [
"src/library/**/*.ts",
"bld/library",
"!*.tsbuildinfo"
],
"devDependencies": {
"@mufan/code": "^0.2.5",
"@mufan/eslint-plugin": "^0.1.35",
"@types/jest": "^26.0.10",
"@types/node": "^14.0.27",
"@types/validator": "^13.1.0",
"coveralls": "^3.1.0",
"eslint": "^7.7.0",
"jest": "^26.4.0",
"prettier": "^2.0.5",
"ts-jest": "^26.2.0",
"typescript": "^4.0.2"
},
"peerDependencies": {
"typescript": ">=4.0.2"
},
"dependencies": {
"extendable-error": "^0.1.7",
"tslang": "^0.1.22",
"tslib": "^2.0.1",
"tsutils": "^3.17.1",
"validator": "^13.1.1"
}
}