-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.28 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
{
"private": false,
"name": "use-model-validation",
"version": "0.2.6",
"main": "build/index.js",
"types": "build/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Enijar/use-model-validation"
},
"description": "Store data in a model and validate that data anywhere",
"author": "Enijar",
"license": "MIT",
"scripts": {
"format": "npx prettier@^2.0.5 lib --write",
"build": "npx tsc -p tsconfig.lib.json",
"test": "npx jest --collectCoverage",
"test-watch": "npx jest --watchAll",
"prepublishOnly": "npm test && npm run build"
},
"jest": {
"coveragePathIgnorePatterns": [
"<rootDir>/build/",
"<rootDir>/integration/",
"<rootDir>/node_modules/",
"<rootDir>/coverage/"
],
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
],
"preset": "ts-jest"
},
"standard": {
"env": [
"jest"
]
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.171",
"jest": "^26.6.3",
"prettier": "^2.0.5",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"typescript": "^3.9.7"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all",
"ie 11"
],
"dependencies": {
"lodash": "^4.17.21"
}
}