-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.15 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
{
"name": "angular-openapi-schematics",
"version": "0.0.9",
"description": "Schematics to build an OpenAPI based Angular application",
"keywords": [
"blueprints",
"code generation",
"schematics",
"openapi"
],
"schematics": "./collection.json",
"dependencies": {
"ts-node": "^2.0.0",
"typescript": "~2.3.0",
"@types/common-tags": "^1.2.4",
"@types/glob": "^5.0.29",
"@types/node": "^6.0.36",
"@angular-devkit/schematics": "^0.0.8",
"@schematics/angular": "^0.0.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrjmd/angular-openapi-schematics.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mrjmd/angular-openapi-schematics/issues"
},
"homepage": "https://github.com/mrjmd/angular-openapi-schematics#readme",
"devDependencies": {
"rimraf": "^2.5.4",
"del": "^3.0.0"
},
"main": "./module/index.js",
"scripts": {
"prepublishOnly": "rimraf dist && mkdir dist && node tools/copy-package.js && node tools/cleanup.js && tsc",
"publish": "npm run prepublishOnly && cd ./dist && npm publish"
},
"author": "Matt Davis <[email protected]>"
}