-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.56 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
{
"name": "ng2-swagger-client-factory",
"version": "1.0.0",
"description": "Module that creates & caches swagger-client REST clients for reuse throughout an Angular 2 application",
"main": "index.js",
"scripts": {
"clean": "npm cache clean && npm run rimraf -- lib",
"build": "tsc -p src -outDir lib --skipLibCheck"
},
"repository": {
"type": "git",
"url": "git+https://github.com/USPTO/ng2-swagger-client-factory.git"
},
"keywords": [
"swagger",
"swagger-client",
"REST",
"ng2",
"Angular 2"
],
"author": "Scott Smith",
"license": "MIT",
"bugs": {
"url": "https://github.com/USPTO/ng2-swagger-client-factory/issues"
},
"homepage": "https://github.com/USPTO/ng2-swagger-client-factory#readme",
"dependencies": {
"@angular/common": "2.0.0",
"@angular/core": "2.2.0",
"array-find-index": "^1.0.2",
"ntypescript": "1.201609302242.1",
"rimraf": "2.5.4",
"rsvp": "^3.3.3",
"rxjs": "5.0.1",
"swagger-client": "2.1.20"
},
"devDependencies": {
"@angular/common": "2.2.0",
"@angular/compiler": "2.2.0",
"@angular/core": "2.2.0",
"@angular/forms": "2.2.0",
"@angular/http": "2.2.0",
"@angular/platform-browser": "2.2.0",
"@angular/platform-browser-dynamic": "~2.2.0",
"@types/jasmine": "2.5.38",
"@types/node": "^6.0.55",
"concurrently": "3.0.0",
"core-js": "2.4.1",
"ie-shim": "0.1.0",
"jasmine-core": "2.4.1",
"karma": "1.3.0",
"karma-jasmine": "1.0.2",
"tslint": "^4.0.2",
"typescript": "^2.0.0",
"zone.js": "0.6.25"
}
}