-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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
{
"devDependencies": {
"@types/jest": "^26.0.23",
"fast-check": "^2.14.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typedoc": "^0.22.9",
"typescript": "^4.4.4"
},
"name": "effective.ts",
"description": "A library for writing safe, concurrent, fault-tolerant programs in TypeScript.",
"version": "0.2.0",
"main": "dist/io.js",
"types": "dist/io.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"test": "jest --maxWorkers 2",
"lint": "prettier --check 'src/**.ts' 'tests/**.ts'",
"prepare": "npm run build",
"generate-docs": "tsc --project docs-generator && typedoc --plugin ./docs-generator/dist/typedoc-effective-plugin.js src/*",
"generate-docs-watch": "tsc --project docs-generator && typedoc --plugin ./docs-generator/dist/typedoc-effective-plugin.js --watch src/*",
"prepublishOnly": "npm test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DavidTimms/effective.ts.git"
},
"keywords": [
"io",
"monad",
"pure",
"functional",
"concurrency",
"fault-tolerant"
],
"author": "David Timms",
"license": "MIT",
"sideEffects": false,
"bugs": {
"url": "https://github.com/DavidTimms/effective.ts/issues"
},
"homepage": "https://davidtimms.github.io/effective.ts/"
}