-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.65 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
{
"name": "nano-argv-mock",
"private": false,
"version": "1.0.1",
"description": "a library package to mock process.argv of node",
"author": "yemiancheng <ymc.github@gmail.com> (https://github.com/ymc-github)",
"homepage": "https://github.com/ymc-github/nano-argv-mock#readme",
"type": "module",
"files": [
"dist"
],
"main": "./dist/main.cjs",
"module": "./dist/main.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.js",
"require": "./dist/main.cjs"
},
"./*": "./*"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"types": "tsc",
"test": "vitest",
"test-coverage": "vitest run --coverage",
"lint": "eslint lib/**/*ts",
"lint-fix": "eslint lib/**/*ts --fix",
"fmt-ts": "prettier lib/**/*.ts --write"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@vitest/coverage-v8": "^1.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-plugin-banner": "^0.7.1",
"vite-plugin-dts": "^3.7.3",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-nano": "^1.0.2",
"vitest": "^1.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ymc-github/nano-argv-mock.git"
},
"bugs": {
"url": "https://github.com/ymc-github/nano-argv-mock/issues"
},
"keywords": [
"nano-argv",
"mock"
],
"license": "MIT"
}