-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 984 Bytes
/
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
{
"name": "raml-python",
"version": "1.0.1",
"description": "Generate Python API clients/servers from RAML",
"main": "raml-python-generator.js",
"files": [
"raml-python-generator.js",
"bin/",
"lib/",
"LICENSE"
],
"bin": {
"raml-python-generator": "bin/raml-python-generator"
},
"scripts": {
"test": "sh test.sh"
},
"standard": {
"ignore": [
"coverage/**",
"node_modules/**",
"bower_components/**"
]
},
"repository": {
"type": "git",
"url": "https://github.com/val314159/raml-python"
},
"keywords": [
"raml",
"client",
"server",
"api",
"javascript",
"python",
"interface"
],
"author": "Joel Ward <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/val314159/raml-python/issues"
},
"homepage": "https://github.com/val314159/raml-python",
"devDependencies": {
},
"dependencies": {
"raml-generator": "^0.1.3"
}
}