forked from practical-fp/union-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.26 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": "@practical-fp/union-types",
"version": "1.5.1",
"description": "A Typescript library for creating discriminating union types.",
"keywords": [
"adt",
"algebraic",
"discriminating",
"enum",
"ts",
"type",
"typescript",
"union"
],
"author": "Felix Schorer",
"repository": "https://github.com/practical-fp/union-types.git",
"license": "MIT",
"sideEffects": false,
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/typings/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"tsc:cjs": "tsc --module commonjs --outDir dist/cjs",
"tsc:esm": "tsc --module es6 --outDir dist/esm",
"tsc:typings": "tsc --emitDeclarationOnly --declaration --declarationMap --outDir dist/typings",
"clean": "rimraf dist",
"build": "npm run clean && npm run tsc:cjs && npm run tsc:esm && npm run tsc:typings",
"test": "jest",
"prepublishOnly": "npm run test & npm run build"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"conditional-type-checks": "^1.0.5",
"jest": "^25.5.4",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^25.5.1",
"typescript": "~3.5.3"
}
}