-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
64 lines (64 loc) · 2.03 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
{
"type": "module",
"name": "pattern-matching-ts",
"version": "2.0.0",
"description": "Pattern Matching in typescript",
"main": "lib/index.js",
"module": "es6/index.js",
"typings": "lib/index.d.ts",
"author": "Stefano Regosa <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "tslint -p .",
"jest-clear-cache": "jest --clearCache",
"prettier": "prettier --list-different \"./{src,test}/**/*.ts\"",
"fix-prettier": "prettier --write \"./{src,test}/**/*.ts\"",
"jest": "jest",
"test": "npm run lint && npm run prettier && npm run jest-clear-cache && npm run jest",
"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",
"doctoc": "doctoc README.md docs/introduction/code-conventions.md --title \"**Table of contents**\"",
"mocha": "mocha -r ts-node/register test/*.ts",
"dtslint": "dtslint dtslint",
"prerelease": "npm run build",
"release": "ts-node scripts/release",
"docs": "docs-ts"
},
"tags": [
"typescript",
"pattern-matching",
"functional-programming"
],
"keywords": [
"typescript",
"pattern-matching",
"functional-programming",
"fp-ts"
],
"homepage": "https://github.com/nrdlab/pattern-matching-ts",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@types/benchmark": "^2.1.0",
"@types/glob": "^7.1.3",
"assert": "^2.0.0",
"babel-jest": "^26.6.3",
"benchmark": "^2.1.4",
"docs-ts": "^0.5.1",
"fp-ts": "^2.8.5",
"jest": "^26.6.3",
"pattern-matching-ts": "^2.0.0",
"prettier": "^2.0.2",
"rimraf": "2.6.2",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"tslint": "5.11.0",
"tslint-config-standard": "8.0.1",
"tslint-immutable": "^6.0.1",
"typescript": "^4.0.2"
}
}