This repository has been archived by the owner on Mar 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 1.91 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
{
"name": "raml-php-generator",
"version": "0.2.0",
"description": "Generate a PHP API client from RAML",
"main": "raml-php-generator.js",
"files": [
"dist/",
"LICENSE"
],
"bin": {
"raml-php-generator": "dist/bin.js"
},
"scripts": {
"lint": "# tslint \"src/**/*.ts\"",
"typings": "typings",
"build": "rm -rf dist/ && tsc",
"prepublish": "typings install && npm run build",
"generate-client": "node dist/bin.js test/support/fixtures/example.raml -o test/.tmp/example && cd test/.tmp/example && composer install",
"test-server-open": "node test/support/server.js & echo $! > test-server.pid",
"test-server-close": "if [ -f test-server.pid ]; then kill $(cat test-server.pid); rm test-server.pid; fi",
"pretest": "npm run build && npm run generate-client && npm run test-server-open && sleep 1",
"posttest": "npm run test-server-close",
"test": "vendor/bin/phpunit test/integration"
},
"standard": {
"ignore": [
"coverage/**",
"vendor/**",
"node_modules/**",
"bower_components/**"
]
},
"repository": {
"type": "git",
"url": "git://github.com/jays-de/raml-php-generator.git"
},
"keywords": [
"raml",
"client",
"api",
"php",
"interface"
],
"author": "Jens Schulze",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jays-de/raml-php-generator/issues"
},
"homepage": "https://github.com/jays-de/raml-php-generator",
"devDependencies": {
"express": "^4.12.3",
"methods": "^1.1.2",
"typescript": "^2.0",
"typings": "^1.3.2"
},
"dependencies": {
"camel-case": "^3.0.0",
"javascript-stringify": "^1.1.0",
"param-case": "^2.1.0",
"pascal-case": "^2.0.0",
"raml-1-parser": "^1.1.13",
"raml-generator": "^1.0.0-3",
"strands": "^1.0.1",
"uniqueid": "^1.0.0",
"xtend": "^4.0.1"
},
"resolutions": {
"raml-1-parser": "1.1.13"
}
}