-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "fluture-fastify",
"license": "MIT",
"version": "0.1.0",
"description": "Create Fastify handlers using Futures",
"author": "Diego Ceresuela <[email protected]> (https://github.com/dicearr)",
"main": "index",
"module": "index.mjs",
"files": [
"/README.md",
"/index.js",
"/index.mjs",
"/LICENSE",
"/package.json"
],
"scripts": {
"build": "rollup -c rollup.config.mjs",
"ci": "npm run clic && npm run lint && npm test",
"test": "node --experimental-modules --no-warnings test.mjs",
"clic": "license-checker --production --onlyAllow 'MIT;' --summary",
"lint": "eslint \"*.mjs\"",
"release": "xyz --edit --script scripts/prerelease --increment"
},
"repository": {
"type": "git",
"url": "git://github.com/wearereasonablepeople/fluture-fastify.git"
},
"dependencies": {
"daggy": "^1.3.0",
"lodash.curry": "^4.1.1"
},
"peerDependencies": {
"fluture": ">=10 <12"
},
"devDependencies": {
"eslint": "^6.7.2",
"eslint-plugin-markdown": "^1.0.1",
"fluture": "^11.0.0",
"license-checker": "^25.0.1",
"rollup": "^2.0.0",
"sanctuary-style": "^3.0.0",
"sinon": "^9.0.0",
"transcribe": "^1.1.1",
"xyz": "^4.0.0"
},
"keywords": [
"fluture",
"fastify"
]
}