-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.35 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.35 KB
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
{
"name": "grunt-swagger-ts",
"version": "0.0.10",
"description": "Generate client side code out of a swagger api documentation",
"homepage": "https://github.com/3IE/grunt-ts-swagger",
"repository": "https://github.com/3IE/grunt-ts-swagger.git",
"contributors": [
{
"name": "Arnaud Lemettre",
"email": "arnaud.lemettre@gmail.com"
},
{
"name": "Benoit Verdier",
"email": "benoit.verdier@gmail.com"
}
],
"keywords": [
"gruntplugin, grunt-swagger-ts, swagger, typescript, api, documentation"
],
"main": "Gruntfile.js",
"engines": {
"node": ">= 0.8.0"
},
"license": "MIT",
"dependencies": {
"async": "~2.0.0-rc.3",
"form-data": "~1.0.0-rc4",
"lodash": "~4.11.1",
"mustache": "~2.2.1",
"q": "~1.4.1",
"request": "^2.71.0",
"swagger-js-codegen": "^1.5.1",
"sync-request": "^3.0.0",
"typescript-collections": "^1.1.2",
"typescript-formatter": "^2.2.0",
"typescript": "~1.8.2",
"grunt": "~1.0.1",
"jit-grunt": "~0.10.0",
"grunt-ts": "~5.4.0",
"typings": "^1.0.4"
},
"devDependencies": {
"jshint": "~2.9.2",
"grunt-contrib-clean": "1.0.0",
"grunt-contrib-jshint": "1.0.0",
"grunt-contrib-nodeunit": "1.0.0"
},
"scripts": {
"prepublish": "typings install && grunt",
"test": "grunt OfficialTest && grunt CustomTest"
}
}