-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.48 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
{
"name": "inquiry-monad",
"version": "0.32.0",
"description": "Inquiry is an expressive API that allows one ask multiple questions about a subject value, and observe all results. This process returns a collection of all passes, fails, and the original subject value.",
"main": "built/index",
"scripts": {
"test": "jest --env=node",
"build": "./node_modules/.bin/tsc",
"prepublishOnly": "npm run build && npm run bundle",
"bundle": "webpack --config webpack.config.js"
},
"keywords": [
"monad",
"inquiry",
"validation",
"left",
"right",
"functional",
"either",
"observability"
],
"repository": {
"url": "[email protected]:rgeraldporter/inquiry-monad.git",
"type": "git"
},
"author": "Robert Gerald Porter <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "22.2.3",
"@types/ramda": "0.25.24",
"awesome-typescript-loader": "5.0.0",
"jest": "22.4.4",
"ramda": "0.25.0",
"ts-jest": "22.4.6",
"ts-node": "6.0.0",
"webpack": "4.8.3",
"webpack-cli": "2.1.4"
},
"dependencies": {
"simple-maybe": "1.0.0",
"typescript": "2.8.3"
},
"files": [
"built/index.d.ts",
"built/index.js",
"built/index.js.map",
"built/inquiry-monad.d.ts",
"built/inquiry-monad.js",
"built/inquiry-monad.js.map",
"built/symbols.d.ts",
"built/symbols.js",
"built/symbols.js.map",
"bundles/inquiry-monad.min.js",
"bundles/inquiry-monad.min.js.map"
]
}