-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.14 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
{
"name": "wily",
"version": "0.1.1",
"description": "Build a Node.js API from the command line",
"author": "Alex Pereira <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/alexpereira/wily#readme",
"repository": "git://github.com/alexpereira/wily",
"bugs": {
"url": "https://github.com/alexpereira/wily/issues"
},
"keywords": [
"cli",
"tools"
],
"engines": {
"node": ">= 0.8.x"
},
"files": [
"/bin",
"/lib"
],
"bin": {
"wily": "./bin/wily"
},
"main": "./lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "wily",
"plugins": [
"@oclif/plugin-help"
]
},
"scripts": {
"build": "./node_modules/.bin/tsc",
"test": "./node_modules/.bin/mocha --require ts-node/register ./tests/**/*.test.ts"
},
"dependencies": {
"@oclif/dev-cli": "^1.19.0",
"@oclif/test": "^1.2.1",
"@oclif/tslint": "^3.1.0",
"inquirer": "^6.2.0"
},
"devDependencies": {
"@types/inquirer": "0.0.43",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"ts-node": "^7.0.1",
"typescript": "^3.1.1"
}
}