-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.3 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": "booture",
"version": "2.1.0",
"description": "Application bootstrapping on top of Fluture Hooks",
"keywords": [
"fluture",
"resource-management",
"application-bootstrapping",
"dependency-injection"
],
"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/booture.git"
},
"files": [
"/dist",
"/index.js",
"/LICENSE",
"/package.json",
"/README.md"
],
"author": "Aldwin Vlasblom <[email protected]> (https://github.com/Avaq)",
"license": "MIT",
"dependencies": {},
"peerDependencies": {
"fluture": ">=12.0.0-beta.4 <15.0.0",
"fluture-hooks": ">=2.0.0 <3.0.0"
},
"devDependencies": {
"c8": "^7.1.0",
"codecov": "^3.2.0",
"fluture": "^14.0.0",
"fluture-hooks": "^2.0.0",
"oletus": "^3.0.0",
"rollup": "^2.0.0",
"sanctuary-scripts": "^4.0.0"
}
}