-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
45 lines (45 loc) · 999 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
37
38
39
40
41
42
43
44
45
{
"name": "cliffy",
"version": "2.5.1",
"description": "A framework for interactive CLIs",
"main": "dist/index.js",
"scripts": {
"test": "tsc && cd dist && mocha",
"prepublishOnly": "npm test",
"preversion": "npm test",
"build": "tsc"
},
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:drew-y/cliffy.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"cli",
"command",
"repl",
"vorpal",
"typescript"
],
"author": "Drew Youngwerth",
"license": "ISC",
"bugs": {
"url": "https://github.com/drew-y/cliffy/issues"
},
"homepage": "https://github.com/drew-y/cliffy#README",
"devDependencies": {
"@types/mocha": "^5.2.2",
"mocha": "^9.2.2",
"mock-streams": "^1.0.1",
"tslint": "^5.9.1",
"typescript": "^3.1.6"
},
"dependencies": {
"@types/node": "^6.0.0",
"columnify": "^1.5.4",
"indent": "0.0.2"
}
}