-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
63 lines (63 loc) · 1.46 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
{
"name": "fluture-sanctuary-types",
"version": "7.1.0",
"description": "Fluture type definitions for Sanctuary",
"keywords": [
"fluture",
"sanctuary",
"types",
"typings",
"future",
"algebraic-data-types"
],
"type": "module",
"main": "./dist/umd.js",
"module": "index.js",
"exports": {
".": {
"import": "./index.js",
"require": "./dist/umd.js"
},
"./index.js": "./index.js"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"codecov": "codecov",
"doctest": "sanctuary-doctest",
"lint": "sanctuary-lint",
"release": "sanctuary-release",
"test": "npm run lint && sanctuary-test && npm run doctest"
},
"repository": {
"type": "git",
"url": "git://github.com/fluture-js/fluture-sanctuary-types.git"
},
"files": [
"/dist",
"/index.d.ts",
"/index.js",
"/LICENSE",
"/package.json",
"/README.md"
],
"author": "Aldwin Vlasblom <[email protected]> (https://github.com/Avaq)",
"license": "MIT",
"dependencies": {
"sanctuary-type-identifiers": "^3.0.0"
},
"peerDependencies": {
"fluture": ">=12.0.0-beta.6 <15.0.0",
"sanctuary-def": ">=0.20.0 <0.23.0"
},
"devDependencies": {
"c8": "^7.1.0",
"codecov": "^3.2.0",
"fluture": "^14.0.0",
"oletus": "^3.0.0",
"rollup": "^2.0.0",
"sanctuary-def": "^0.22.0",
"sanctuary-scripts": "^4.0.0",
"sanctuary-show": "^2.0.0",
"sanctuary-type-classes": "^12.0.0"
}
}