-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 964 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
{
"name": "manipu",
"description": "Convert manifest.json to PlantUML",
"version": "0.0.1",
"author": "reun @ReneU",
"bin": {
"manipu": "./bin/run"
},
"bugs": "https://github.com/schneiderlars/manipu/issues",
"dependencies": {
"@oclif/command": "^1.5.6",
"@oclif/config": "^1.9.0",
"@oclif/plugin-help": "^2.1.4"
},
"devDependencies": {
"@oclif/test": "^1.2.2",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"rimraf": "^2.6.2"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/src"
],
"homepage": "https://github.com/schneiderlars/manipu",
"keywords": [
"oclif"
],
"license": "APACHE 2.0",
"main": "src/index.js",
"oclif": {
"bin": "manipu"
},
"repository": "schneiderlars/manipu",
"scripts": {
"test": "nyc mocha --forbid-only \"test/**/*.test.js\"",
"test-debug": "nyc mocha --forbid-only \"test/**/*.test.js\" --inspect-brk"
}
}