-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 2.7 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "cross-spawn-windows-exe",
"version": "1.2.0",
"description": "Cross-platform support for running Windows executables",
"main": "dist/src/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/malept/cross-spawn-windows-exe.git"
},
"bugs": {
"url": "https://github.com/malept/cross-spawn-windows-exe/issues"
},
"homepage": "https://github.com/malept/cross-spawn-windows-exe#readme",
"keywords": [
"cross-platform",
"spawn",
"windows",
"exe"
],
"author": "Mark Lee",
"license": "Apache-2.0",
"engines": {
"node": ">= 12.13.0"
},
"scripts": {
"ava": "ava",
"build": "tsc",
"coverage": "nyc --reporter=lcov --reporter=text ava",
"docs": "typedoc src/index.ts",
"lint": "prettier --check . && eslint --ext .ts .",
"prepare": "npm run build && husky install",
"test": "yarn lint && yarn ava"
},
"dependencies": {
"@malept/cross-spawn-promise": "^2.0.0",
"is-wsl": "^2.2.0",
"which": "^2.0.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@malept/eslint-config": "^1.2.0",
"@types/node": "^17.0.0",
"@types/sinon": "^10.0.0",
"@types/which": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"ava": "^3.9.0",
"eslint": "^7.3.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-ava": "^12.0.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-tsdoc": "^0.2.5",
"husky": "^7.0.1",
"lint-staged": "^12.0.2",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"sinon": "^14.0.0",
"source-map-support": "^0.5.19",
"ts-node": "^10.2.1",
"typedoc": "^0.22.3",
"typescript": "~4.7.2"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"timeout": "3m"
},
"eslintConfig": {
"extends": [
"@malept/eslint-config/typescript"
],
"overrides": [
{
"files": "test/*.ts",
"rules": {
"import/no-named-as-default-member": "off"
}
}
]
},
"eslintIgnore": [
"dist"
],
"funding": [
{
"type": "individual",
"url": "https://github.com/sponsors/malept"
},
{
"type": "tidelift",
"url": "https://tidelift.com/subscription/pkg/npm-cross-spawn-windows-exe?utm_medium=referral&utm_source=npm_fund"
}
],
"lint-staged": {
"*.{json,md,yml}": "prettier --write",
"*.ts": [
"eslint --fix"
]
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript"
}
}