-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
69 lines (69 loc) · 1.96 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
{
"name": "waveguide",
"version": "1.4.0",
"description": "An effect type for typescript/javascript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://rzeigler.github.com/waveguide",
"scripts": {
"clean": "rimraf lib/ build/",
"build": "tsc",
"test-build": "tsc -p tsconfig.test.json",
"test": "mocha --require ts-node/register --project tsconfig.test.json --recursive -extensions ts test/*",
"lint": "eslint --ext .ts,.tsx src test examples benchmarks",
"lint-fix": "eslint --fix --ext .ts,.tsx src test examples benchmarks",
"docs": "docs-ts",
"prepublishOnly": "npm run clean && npm run lint && npm run build && npm run test-build"
},
"keywords": [
"typescript",
"promise",
"future",
"effect"
],
"bugs": {
"url": "https://github.com/rzeigler/waveguide/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rzeigler/waveguide.git"
},
"author": "Ryan Zeigler",
"license": "Apache-2.0",
"devDependencies": {
"@types/benchmark": "^1.0.31",
"@types/bluebird": "^3.5.27",
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/deep-equal": "^1.0.1",
"@types/mocha": "^5.2.5",
"@types/node": "^12.0.2",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"benchmark": "^2.1.4",
"bluebird": "^3.5.5",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"deep-equal": "^1.0.1",
"docs-ts": "0.1.0",
"doctoc": "^1.4.0",
"eslint": "^6.2.2",
"esm": "^3.2.5",
"fast-check": "^1.14.0",
"fearless-io": "^11.1.0",
"fluture": "^11.0.2",
"fp-ts": "^2.0.0",
"fp-ts-contrib": "^0.1.2",
"mocha": "^5.2.0",
"mocha-cli": "^1.0.1",
"nodemon": "^1.18.10",
"np": "^4.0.2",
"rimraf": "^2.6.3",
"source-map-support": "^0.5.10",
"ts-node": "^8.1.0",
"typescript": "^3.6.4"
},
"peerDependencies": {
"fp-ts": "^2.0.0"
}
}