-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.23 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
{
"name": "fastify-locks",
"version": "3.0.0",
"description": "A Fastify Web Locks API Plugin",
"main": "index.js",
"exports": {
"import": "./esm-wrapper.mjs",
"require": "./index.js"
},
"types": "index.d.ts",
"scripts": {
"build": "gen-esm-wrapper . esm-wrapper.mjs",
"lint": "standardx \"**/*.{mjs,js,cjs}\" | snazzy",
"prepack": "npm run build",
"test": "tap tests/*.test.js",
"test:types": "tsd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/piscinajs/fastify-locks"
},
"keywords": [
"piscina",
"weblocks",
"fastify"
],
"author": "James M Snell <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.10.5",
"fastify": "^4.25.1",
"gen-esm-wrapper": "^1.1.3",
"snazzy": "^9.0.0",
"standardx": "^7.0.0",
"tap": "^16.3.10",
"tsd": "^0.30.0"
},
"dependencies": {
"fastify-plugin": "^3.0.0",
"piscina-locks": "^3.0.0"
},
"tsd": {
"directory": "tests"
},
"eslintConfig": {
"rules": {
"semi": [
"error",
"always"
],
"no-unused-vars": "off"
},
"globals": {
"SharedArrayBuffer": true,
"Atomics": true
}
},
"standardx": {}
}