forked from npm/cmd-shim
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
64 lines (64 loc) · 1.41 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
{
"name": "@zkochan/cmd-shim",
"version": "6.0.0",
"description": "Used in pnpm for command line application support",
"author": {
"name": "Zoltan Kochan",
"email": "[email protected]",
"url": "http://kochan.io"
},
"scripts": {
"clean": "tsc --build --clean",
"build": "tsc --build --verbose --listEmittedFiles",
"pretest:unit": "tsc --build test --verbose --listEmittedFiles",
"test:unit": "jest",
"test": "pnpm run build && standard && pnpm run test:unit && mos test",
"md": "mos",
"prepublishOnly": "pnpm run build"
},
"files": [
"index.d.ts",
"index.d.ts.map",
"index.js",
"index.js.map"
],
"repository": {
"type": "git",
"url": "https://github.com/pnpm/cmd-shim.git"
},
"license": "BSD-2-Clause",
"dependencies": {
"cmd-extension": "^1.0.2",
"graceful-fs": "^4.2.10",
"is-windows": "^1.0.2"
},
"devDependencies": {
"@types/is-windows": "^1.0.0",
"@types/jest": "^29.4.4",
"@types/node": "^18.15.3",
"jest": "^29.5.0",
"memfs": "^3.4.13",
"mock-fs": "^5.2.0",
"mos": "^1.3.1",
"mos-plugin-readme": "^1.0.4",
"standard": "^14.3.4",
"tempy": "^1.0.1",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=14.6"
},
"mos": {
"plugins": [
"readme"
]
},
"standard": {
"env": {
"jest": true
}
},
"jest": {
"testEnvironment": "node"
}
}