-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.42 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
{
"name": "fp-ts-representable",
"homepage": "skeate.dev/fp-ts-representable",
"version": "1.2.1",
"exports": {
".": "./dist/lib/index.js",
"./*": {
"require": "./dist/lib/*.js",
"import": "./dist/es6/*.js"
}
},
"files": [
"dist/"
],
"types": "index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/types/*"
]
}
},
"sideEffects": false,
"license": "MIT",
"peerDependencies": {
"fp-ts": "^2.9.5"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"cspell": "^5.5.2",
"docs-ts": "^0.6.10",
"eslint": "^7.27.0",
"fast-check": "^2.13.0",
"fp-ts": "^2.9.5",
"fp-ts-laws": "^0.3.0",
"jest": "^26.6.3",
"markdown-magic": "^2.0.0",
"prettier": "^2.2.1",
"prettier-plugin-jsdoc": "^0.3.13",
"ts-jest": "^26.5.3",
"typescript": "^4.2.3"
},
"scripts": {
"build": "rm -rf ./dist && tsc -p tsconfig.build-cjs.json && tsc -p ./tsconfig.build-esm.json && tsc -p ./tsconfig.build-types.json",
"build:watch": "tsc -w -p tsconfig.build.json",
"prepublish": "npm run build",
"pretty": "prettier --check .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --max-warnings 0",
"test": "jest",
"test:watch": "npm run jest --watch",
"docs": "docs-ts",
"spell": "cspell '**/*.*'",
"md": "markdown"
}
}