-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.73 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"author": "Matthias Seemann <[email protected]> (https://visisoft.de)",
"bugs": {
"url": "https://github.com/semmel/StaticLand/issues"
},
"dependencies": {
"ramda": "^0.30.1"
},
"description": "StaticLand functions for Algebraic Data Types based on native JavaScript types",
"devDependencies": {
"@most/core": "^1.6.1",
"@most/types": "^1.1.0",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"@types/ramda": "^0.30.1",
"chai": "^4.3.8",
"hirestime": "^6.1.0",
"istanbul-badges-readme": "^1.8.5",
"mocha": "^10.7.0",
"msw": "^2.0.0",
"rollup": "^3.29.2"
},
"exports": {
".": {
"import": "./index.js",
"require": "./dist/cjs/staticland.js"
},
"./cancelable": {
"import": "./src/cancelable.js",
"require": "./dist/cjs/cancelable.js"
},
"./either": {
"import": "./src/either.js",
"require": "./dist/cjs/either.js"
},
"./lens": {
"import": "./src/lens.js",
"require": "./dist/cjs/lens.js"
},
"./list": {
"import": "./src/list.js",
"require": "./dist/cjs/list.js"
},
"./maybe": {
"import": "./src/maybe.js",
"require": "./dist/cjs/maybe.js"
},
"./package.json": "./package.json",
"./fantasyland": {
"import": "./src/fantasyland.js",
"require": "./dist/cjs/fantasyland.js"
},
"./promise": {
"import": "./src/promise.js",
"require": "./dist/cjs/promise.js"
},
"./transformations": {
"import": "./src/transformations.js",
"require": "./dist/cjs/transformations.js"
}
},
"files": [
"dist",
"src",
"index.js",
"*.d.ts"
],
"homepage": "https://github.com/semmel/StaticLand#readme",
"keywords": [
"Maybe",
"Promise",
"StaticLand",
"Lens",
"Algebraic",
"Functional",
"Type"
],
"license": "JSON",
"main": "./dist/cjs/staticland.js",
"module": "./index.js",
"name": "@visisoft/staticland",
"peerDependencies": {
"@most/scheduler": "1.3.0 - 2",
"baconjs": "^3.0.17"
},
"repository": {
"type": "git",
"url": "git+https://github.com/semmel/StaticLand.git"
},
"scripts": {
"build:cjs": "rm --force ./dist/cjs/*.js && rollup -c && cp --force ./scripts/cjs-package.json ./dist/cjs/package.json",
"build:docs": "npm run build:badges && mkdocs build",
"build:badges": "istanbul-badges-readme --style=\"flat-square\"",
"copy_ts_defs_into_root": "cp ./src/*.d.ts .",
"postpack": "npm run remove_ts_defs_from_root",
"prepack": "npm run test && npm run build:cjs && npm run copy_ts_defs_into_root",
"publish:docs": "npm run test:coverage && npm run build:docs && mkdocs gh-deploy",
"remove_ts_defs_from_root": "rm -v ./*.d.ts",
"test": "mocha",
"test:coverage": "c8 mocha",
"test:individual": "npx mocha --no-config test/readmeExampleTest.mjs"
},
"type": "module",
"version": "2.1.4"
}