-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
74 lines (74 loc) · 1.61 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
68
69
70
71
72
73
74
{
"name": "clet",
"version": "1.0.1",
"description": "Command Line E2E Testing",
"type": "module",
"main": "./lib/runner.js",
"exports": "./lib/runner.js",
"types": "./lib/index.d.ts",
"author": "TZ <[email protected]> (https://github.com/atian25)",
"homepage": "https://github.com/node-modules/clet",
"repository": "[email protected]:node-modules/clet.git",
"dependencies": {
"dirname-filename-esm": "^1.1.1",
"dot-prop": "^7.2.0",
"execa": "^6.1.0",
"lodash.ismatch": "^4.4.0",
"p-event": "^5.0.1",
"strip-ansi": "^7.0.1",
"strip-final-newline": "^3.0.0",
"throwback": "^4.1.0",
"trash": "^8.1.0"
},
"devDependencies": {
"@vitest/coverage-c8": "^0.22.1",
"@vitest/ui": "^0.22.1",
"cross-env": "^7.0.3",
"egg-ci": "^1.19.0",
"enquirer": "^2.3.6",
"eslint": "^7",
"eslint-config-egg": "^9",
"supertest": "^6.2.3",
"vitest": "^0.22.1"
},
"files": [
"bin",
"lib",
"index.js"
],
"scripts": {
"lint": "eslint .",
"test": "vitest",
"cov": "vitest run --coverage",
"ci": "npm run lint && npm run cov"
},
"ci": {
"version": "14, 16, 18",
"type": "github",
"npminstall": false
},
"eslintConfig": {
"extends": "eslint-config-egg",
"root": true,
"env": {
"node": true,
"browser": false,
"jest": true
},
"rules": {
"node/file-extension-in-import": [
"error",
"always"
]
},
"parserOptions": {
"sourceType": "module"
},
"ignorePatterns": [
"dist",
"coverage",
"node_modules"
]
},
"license": "MIT"
}