-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
68 lines (68 loc) · 1.77 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
{
"name": "@worldsibu/conv-rest-api",
"version": "0.1.5",
"description": "Rest API generator for the Convector Framework",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"bin/*",
"dist/*",
"templates/*",
"templates_scripts/*",
"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"
},
"bin": {
"conv-rest-api": "./dist/command.js"
},
"dependencies": {
"async": "^2.1.4",
"basic": "^2.0.3",
"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",
"reflect-metadata": "^0.1.13",
"safe-json-stringify": "^1.2.0",
"shelljs": "^0.8.3",
"to-absolute-glob": "^2.0.2",
"ts-simple-ast": "^16.0.4",
"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.20",
"lerna": "^3.10.7",
"rimraf": "^2.6.3",
"ts-node": "^6.0.3",
"tsc": "^1.20150623.0",
"tslint": "^5.12.1",
"typescript": "^2.9.2"
},
"author": "WorldSibu",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/worldsibu/convector-rest-api.git"
},
"bugs": {
"url": "https://github.com/worldsibu/convector-rest-api/issues"
},
"homepage": "https://github.com/worldsibu/convector-rest-api#readme"
}