-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "modpod",
"version": "0.2.0",
"description": "Isolate your ES Modules for testing.",
"main": "index.js",
"type": "module",
"files": [
"src/**/!(*.test).js"
],
"repository": {
"type": "git",
"url": "https://github.com/digitalBush/modpod.git"
},
"scripts": {
"test": "c8 node --test",
"test:watch": "node --test --watch",
"cover:show": "c8 report -r html && open ./coverage/index.html",
"check": "npm run lint && npm run format",
"lint": "eslint .",
"format": "prettier -c .",
"preversion": "./tools/preversion.sh",
"version": "./tools/changelog.sh",
"postversion": "git push && git push --tags && gh release create v$(npm pkg get version|xargs) --generate-notes"
},
"imports": {
"#root/*.js": "./*.js"
},
"keywords": [
"esm",
"mock"
],
"author": "",
"license": "ISC",
"devDependencies": {
"c8": "^8.0.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.1.0"
},
"dependencies": {
"callsites": "^4.1.0",
"resolve-pkg-maps": "^1.0.0"
}
}