-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "fibble",
"version": "1.2.3",
"description": "Small library to insert test doubles into your tests",
"keywords": [
"test",
"testdouble",
"mock",
"proxyquire"
],
"repository": "TheLudd/fibble",
"license": "MIT",
"author": "Ludwig Magnusson <[email protected]>",
"type": "module",
"exports": {
".": {
"types": "./lib/replace.d.ts",
"import": "./lib/replace.js"
},
"./loader": "./lib/legacy-loader.js",
"./register": "./lib/register.js",
"./package.json": "./package.json"
},
"scripts": {
"acceptance": "./run-acceptance",
"lint": "pnpm eslint . && pnpm prettier . --check && sort-package-json --check",
"prepublishOnly": "pnpm lint && pnpm test",
"test": "pnpm unit && pnpm acceptance",
"unit": "mocha"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.29.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^10.1.0",
"pad": "^3.2.0",
"prettier": "^2.8.1",
"semver": "^7.5.4",
"sort-package-json": "^2.1.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16.12.0 <20.0.0 || >20.6.0"
}
}