-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 935 Bytes
/
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
{
"name": "@hfour/yads",
"private": false,
"main": "build/index.js",
"types": "build/index.d.ts",
"dependencies": {
"mobx": ">=4.9.4 <6.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"asciitree": "^1.0.2",
"fast-check": "^2.13.0",
"jest": "^26.6.3",
"parcel-bundler": "^1.12.0",
"prettier": "^1.16.4",
"ts-jest": "^26.5.2",
"typescript": "^4.2.2"
},
"browserslist": [
"> 5%"
],
"scripts": {
"build": "tsc",
"prepublish": "tsc",
"test": "node_modules/.bin/jest",
"browser": "node_modules/.bin/parcel dev/index.html --no-hmr"
},
"jest": {
"verbose": true,
"preset": "ts-jest",
"testRegex": "(/tests/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"/node_modules/",
"\\.util\\.ts$",
"\\.ignore\\.ts$"
],
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
]
},
"version": "1.1.1"
}