-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
67 lines (67 loc) · 1.64 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
{
"name": "@worldsibu/convector-cli",
"version": "1.1.7",
"description": "Official Command-Line Interface for Convector Framework",
"main": "./dist/src/index.js",
"typings": "./dist/src/index.d.ts",
"files": [
"bin/*",
"dist/*",
"templates/*",
"package.json"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"prepare": "npm run build",
"lint": "tslint --fix -c './tslint.json' -p -p './tsconfig.json'",
"test": "mocha -r ts-node/register tests/**/*.spec.ts --reporter spec"
},
"keywords": [
"worldsibu",
"convector",
"cli"
],
"bin": {
"conv": "./dist/command.js"
},
"dependencies": {
"async": "^2.1.4",
"chai": "^4.2.0",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"ejs": "^2.6.1",
"fs-extra": "^7.0.1",
"inquirer": "^2.0.0",
"insight": "^0.10.1",
"mem-fs": "^1.1.3",
"mem-fs-editor": "^5.1.0",
"mocha": "^5.2.0",
"path": "^0.12.7",
"shelljs": "^0.8.2",
"tslib": "^1.9.0",
"update-notifier": "^2.5.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/fs-extra": "^5.0.4",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.5",
"lerna": "^3.13.0",
"rimraf": "^2.6.2",
"ts-node": "^6.0.3",
"tsc": "^1.20150623.0",
"tslint": "^5.9.1",
"typescript": "^2.9.2"
},
"author": "WorldSibu",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/worldsibu/convector-cli.git"
},
"bugs": {
"url": "https://github.com/worldsibu/convector-cli/issues"
},
"homepage": "https://github.com/worldsibu/convector-cli#readme"
}