-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
67 lines (67 loc) · 1.62 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
{
"name": "fastify-piscina",
"version": "5.0.0",
"description": "A Fastify Piscina Plugin",
"main": "./plugin.js",
"exports": {
"import": "./esm-wrapper.mjs",
"require": "./plugin.js"
},
"types": "./plugin.d.ts",
"scripts": {
"prepack": "npm run build",
"build": "gen-esm-wrapper . esm-wrapper.mjs",
"lint": "standardx \"**/*.{mjs,js,cjs}\" | snazzy",
"lint:fix": "standardx --fix",
"test": "tap -J test/*.test.{js,mjs}",
"test:coverage": "tap -J test/*.test.{js,mjs} --cov --coverage-report=html --no-browser --no-check-coverage",
"test:verbose": "npm run unit -- -Rspec",
"test:ci": "npm run test:coverage && npm run test:typescript",
"test:typescript": "tsd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/piscinajs/fastify-piscina"
},
"keywords": [
"piscina",
"fastify",
"fastify-plugin"
],
"author": "James M Snell <[email protected]>",
"contributors": [
"Anna Henningsen <[email protected]>",
"Matteo Collina <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.11",
"fastify": "^4.24.3",
"gen-esm-wrapper": "^1.1.3",
"snazzy": "^9.0.0",
"standardx": "^7.0.0",
"tap": "^15.1.5",
"tsd": "^0.19.0"
},
"dependencies": {
"fastify-plugin": "^4.5.1",
"piscina": "^4.2.0"
},
"eslintConfig": {
"rules": {
"semi": [
"error",
"always"
],
"no-unused-vars": "off"
},
"globals": {
"SharedArrayBuffer": true,
"Atomics": true
}
},
"standardx": {},
"tsd": {
"directory": "test/types"
}
}