forked from dthree/vorpal
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 1.93 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
{
"name": "vorpal",
"version": "1.11.4",
"description": "Node's first framework for building immersive CLI apps.",
"main": "./dist/vorpal.js",
"engines": {
"node": ">= 8"
},
"keywords": [
"api",
"cli",
"repl",
"shell",
"immersive",
"framework",
"app",
"application",
"command",
"commander",
"automated",
"prompt",
"inquirer"
],
"author": "dthree",
"license": "MIT",
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint src --ext .ts --cache",
"lint:fix": "npm run lint -- --fix",
"publish-coverage": "codecov",
"test": "npm run lint && npm run test:unit",
"test:unit": "jest --coverage --forceExit",
"test:watch": "npm run test:unit -- --watch",
"prepublishOnly": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dthree/vorpal.git"
},
"bugs": {
"url": "https://github.com/dthree/vorpal/issues"
},
"homepage": "https://github.com/dthree/vorpal#readme",
"dependencies": {
"chalk": "^2.4.2",
"inquirer": "^7.0.0",
"lodash": "^4.17.15",
"log-update": "^3.3.0",
"minimist": "^1.2.0",
"node-localstorage": "^0.6.0",
"strip-ansi": "^5.2.0",
"wrap-ansi": "^6.0.0"
},
"devDependencies": {
"@types/inquirer": "^6.5.0",
"@types/jest": "^24.0.19",
"@types/lodash": "^4.14.144",
"@types/minimist": "^1.2.0",
"@types/node": "^12.11.1",
"@types/node-localstorage": "^1.3.0",
"@types/wrap-ansi": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"codecov": "^3.6.1",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"typescript": "^3.6.4",
"vorpal-less": "0.0.13",
"vorpal-repl": "^1.1.8"
},
"files": [
"dist"
]
}