-
Notifications
You must be signed in to change notification settings - Fork 374
/
package.json
52 lines (52 loc) · 1.21 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
{
"name": "fantasy-land",
"author": "Brian McKenna",
"version": "5.0.1",
"description": "Specification for interoperability of common algebraic structures in JavaScript",
"license": "MIT",
"homepage": "https://github.com/fantasyland/fantasy-land",
"keywords": [
"algebraic",
"monad",
"applicative",
"functor",
"monoid",
"semigroup",
"chain",
"apply"
],
"issues": {
"url": "https://github.com/fantasyland/fantasy-land/issues"
},
"dependencies": {},
"devDependencies": {
"sanctuary-scripts": "2.x.x"
},
"repository": {
"type": "git",
"url": "git://github.com/fantasyland/fantasy-land.git"
},
"files": [
"/LICENSE",
"/README.md",
"/index.d.ts",
"/index.js",
"/index.mjs",
"/package.json"
],
"main": "index.js",
"exports": {
"types": "./index.d.ts",
"require": "./index.js",
"import": "./index.mjs"
},
"scripts": {
"doctest": "sanctuary-doctest",
"generate-es": "scripts/generate-es",
"generate-js": "scripts/generate-js",
"generate-ts": "scripts/generate-ts",
"lint": "sanctuary-lint",
"release": "sanctuary-release",
"test": "npm run lint && sanctuary-test && npm run doctest"
}
}