-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.14 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
{
"name": "typio",
"version": "0.3.9",
"description": "Util for casting any object to specified model with typescript type inference",
"main": "index.js",
"scripts": {
"test": "tsc && tslint --project tsconfig.json && jest --verbose --coverage",
"watch:test": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arvitaly/typio.git"
},
"keywords": [
"types",
"typescript",
"cast",
"interfaces",
"check"
],
"author": "arvitaly",
"license": "ISC",
"bugs": {
"url": "https://github.com/arvitaly/typio/issues"
},
"homepage": "https://github.com/arvitaly/typio#readme",
"jest": {
"collectCoverageFrom": [
"<rootDir>/**/*.{js,jsx}",
"!<rootDir>/coverage/**",
"!<rootDir>/util/isNumeric.js",
"!<rootDir>/util/isObject.js",
"!<rootDir>/util/isPlainObject.js"
],
"testMatch": [
"**/__tests__/**/*.js",
"**/?(*.)+(spec|test).js"
]
},
"devDependencies": {
"@types/jest": "^25.2.1",
"coveralls": "^3.0.11",
"jest": "^25.3.0",
"tslint": "^6.1.1",
"typescript": "^3.8.3",
"with-error": "^0.1.5"
}
}