-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 1.96 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
69
70
71
{
"name": "@mean-expert/openapi-sdk-builder",
"version": "1.0.0-alpha.1",
"description": "Tool for auto-generating SDKs from an OpenApi Specification File",
"bin": {
"osb": "dist/src/index.js"
},
"main": "dist/src/index.js",
"scripts": {
"prepublish": "npm run test",
"precompile": "npm run lint",
"compile": "node_modules/typescript/bin/./tsc",
"pretest": "npm run compile && npm run copy && npm run build",
"copy": "node_modules/copyfiles/./copyfiles src/**/templates/*.ejs dist",
"build": "cd tests && node ../dist/src/index.js",
"test": "./node_modules/karma/bin/karma start karma.config.js",
"lint": "node_modules/tslint/bin/./tslint -c tslint.json 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git://github.com/mean-expert-official/openapi-sdk-builder.git"
},
"keywords": [
"OpenApi",
"SDK",
"Angular"
],
"author": {
"name": "Jonathan Casarrubias",
"email": "[email protected]",
"url": "http://mean.expert"
},
"contributors": [],
"files": [
"bin",
"lib",
"index.js",
"CHANGELOG.md",
"LICENSE.md",
"README.md"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mean-expert-official/openapi-sdk-builder/issues"
},
"dependencies": {
"@mean-expert/loopback-component-realtime": "^1.0.0-beta.8",
"chalk": "^1.1.3",
"ejs": "^2.5.6",
"extfs": "0.0.7",
"mkdirp": "0.5.1",
"swagger-parser": "^4.0.0-beta.2"
},
"devDependencies": {
"@types/chalk": "^0.4.31",
"@types/ejs": "^2.3.33",
"@types/jasmine": "^2.5.47",
"@types/karma": "^0.13.35",
"@types/node": "^7.0.18",
"@types/swagger-parser": "^4.0.0",
"copyfiles": "^1.2.0",
"jasmine-core": "^2.6.1",
"karma": "^1.7.0",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-typescript": "^3.0.1",
"phantomjs-polyfill-object-assign": "0.0.2",
"tslint": "^5.2.0",
"typescript": "^2.3.2"
}
}