-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
37 lines (37 loc) · 937 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
{
"name": "unionize",
"version": "3.1.0",
"description": "Boilerplate-free functional sum types in TypeScript",
"repository": "https://github.com/pelotom/unionize",
"author": "Tom Crockett <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc --pretty",
"format": "node scripts/format.js",
"test": "jest --no-cache --verbose --coverage",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/jest": "^21.1.8",
"coveralls": "^3.0.0",
"jest": "^21.2.1",
"prettier": "^1.11.1",
"ts-jest": "^21.2.4",
"typescript": "^3.4.1"
},
"jest": {
"verbose": false,
"testRegex": ".*/*.spec.ts$",
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
"\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor"
},
"mapCoverage": true,
"testEnvironment": "node"
}
}