-
-
Notifications
You must be signed in to change notification settings - Fork 503
/
package.json
75 lines (75 loc) · 2.51 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "fp-ts",
"version": "2.16.9",
"description": "Functional programming in TypeScript",
"main": "./lib/index.js",
"module": "./es6/index.js",
"typings": "lib/index.d.ts",
"sideEffects": false,
"scripts": {
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\" \"scripts/**/*.ts\"",
"lint-fix": "eslint --fix \"src/**/*.ts\" \"test/**/*.ts\" \"scripts/**/*.ts\"",
"prettier": "prettier --list-different \"./{src,test,examples,scripts}/**/*.ts\"",
"fix-prettier": "prettier --write \"./{src,test,examples,scripts}/**/*.ts\"",
"test": "npm run lint && npm run prettier && npm run dtslint && npm run vitest && npm run docs",
"clean": "rimraf ./dist",
"prebuild": "npm run clean",
"build": "tsc -p ./tsconfig.build.json && tsc -p ./tsconfig.build-es6.json && ts-node scripts/build",
"postbuild": "prettier --loglevel=silent --write \"./dist/**/*.ts\"",
"prepublishOnly": "ts-node scripts/pre-publish",
"mocha": "mocha -r ts-node/register test/*.ts",
"dtslint": "dtslint dtslint",
"docs": "docs-ts",
"prerelease": "npm run build",
"release": "ts-node scripts/release",
"dpdm": "dpdm --warning=false --tree=false --exit-code circular:1 -T src/index.ts",
"vitest": "vitest run",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/gcanti/fp-ts.git"
},
"author": "Giulio Canti <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gcanti/fp-ts/issues"
},
"homepage": "https://github.com/gcanti/fp-ts",
"devDependencies": {
"@effect/dtslint": "^0.1.0",
"@effect/language-service": "^0.0.19",
"@types/benchmark": "^1.0.31",
"@types/chai": "^3.5.2",
"@types/glob": "^7.1.3",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vitest/coverage-istanbul": "^1.6.0",
"benchmark": "2.1.4",
"docs-ts": "^0.8.0",
"eslint": "^8.38.0",
"eslint-plugin-deprecation": "^1.4.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-simple-import-sort": "^10.0.0",
"fast-check": "^3.1.3",
"glob": "^7.1.6",
"mocha": "^5.2.0",
"prettier": "^2.7.1",
"rimraf": "2.6.2",
"ts-node": "^8.0.2",
"tslint": "5.11.0",
"typescript": "^5.5.2",
"vitest": "^1.6.0"
},
"tags": [
"typescript",
"algebraic-data-types",
"functional-programming"
],
"keywords": [
"typescript",
"algebraic-data-types",
"functional-programming"
]
}