forked from rgov/node-shlex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 835 Bytes
/
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
{
"name": "shlex",
"version": "2.1.0",
"description": "Node.js port of Python's shlex shell-like lexer",
"main": "shlex.js",
"types": "shlex.d.ts",
"scripts": {
"test": "mocha",
"posttest": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/rgov/node-shlex.git"
},
"keywords": [
"shell",
"command-line",
"cli",
"lexer"
],
"author": "Ryan Govostes",
"license": "MIT",
"bugs": {
"url": "https://github.com/rgov/node-shlex/issues"
},
"homepage": "https://github.com/rgov/node-shlex#readme",
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.27.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"mocha": "^8.4.0"
}
}