-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·86 lines (86 loc) · 1.91 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
76
77
78
79
80
81
82
83
84
85
86
{
"name": "amonad",
"version": "2.0.1",
"description": "Experimental implementation of Maybe and Result monads compatible with await.",
"main": "./dist/index.js",
"scripts": {
"prepack": "npm run build",
"clean": "rm -rf ./dist",
"release": "npm publish --access public",
"build": "npm run clean && tsc -p tsconfig.json",
"build:w": "tsc -p tsconfig.json -w",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"test": "mocha --recursive --require ts-node/register \"src/**/*.spec.ts\" --watch",
"test:once": "mocha --require ts-node/register \"src/**/*.spec.ts\"",
"test:c": "nyc npm run test:once",
"test:ci": "nyc npm run test:once && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"url": "https://github.com/AIRTucha/amonad"
},
"keywords": [
"typescript",
"ts",
"monad",
"await",
"maybe",
"option",
"fp",
"async",
"async-await",
"functional-programming",
"functional programming",
"error-handling",
"error handling",
"async await",
"result",
"try",
"try catch",
"promise",
"thenable",
"monadic",
"then",
"functional"
],
"author": {
"name": "Alex T",
"url": "https://github.com/AIRTucha"
},
"license": "MIT",
"nyc": {
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"node_modules",
"typings",
"src/**/*.spec.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html",
"text"
],
"all": true
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.4",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1",
"ts-node": "^8.2.0",
"tslint": "^5.17.0",
"typescript": "^3.7.2"
}
}