-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1007 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1007 Bytes
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
{
"name": "command-join",
"version": "3.0.0",
"description": "Escape and join command-line arguments, cross-platform.",
"keywords": [
"argv",
"cli",
"command",
"escape",
"join",
"shell"
],
"homepage": "https://github.com/seangenabe/command-join#readme",
"bugs": {
"url": "https://github.com/seangenabe/command-join/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seangenabe/command-join.git"
},
"license": "MIT",
"author": "Sean Genabe <seangenabe@outlook.com>",
"main": "command-join.js",
"scripts": {
"build": "tsc",
"postinstall": "npx -p @seangenabe/tnx tnx || exit 0",
"prepublishOnly": "npm test",
"pretest": "npm run build",
"test": "node test/index.test.js",
"watch": "tsc -w"
},
"dependencies": {
"@improved/node": "^1.0.0"
},
"devDependencies": {
"@types/node": "^12.0.2",
"t0": "^1.0.0",
"typescript": "^3.4.5"
},
"engines": {
"node": ">=4.0.0"
}
}