forked from api-platform/api-doc-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.32 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.32 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
{
"name": "api-doc-parser",
"version": "0.1.5",
"description": "Transform a Hydra API documentation in an intermediate representation that can be used for various tasks such as creating smart API clients, scaffolding code or building admininistration interfaces.",
"files": [
"*.md",
"docs/*.md",
"lib",
"src"
],
"main": "lib/index",
"repository": "dunglas/api-doc-parser",
"homepage": "https://github.com/dunglas/api-doc-parser",
"bugs": "https://github.com/dunglas/api-doc-parser/issues",
"author": "Kévin Dunglas",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.0",
"babel-jest": "^19.0.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-0": "^6.22.0",
"eslint": "^3.18.0",
"eslint-plugin-import": "^2.2.0",
"flow-bin": "^0.42.0",
"jest": "^19.0.2",
"jest-fetch-mock": "^1.0.8"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"jsonld": "^0.4.11"
},
"scripts": {
"test": "jest",
"lint": "eslint src && flow check",
"build": "babel src -d lib --ignore '*.test.js'"
},
"jest": {
"automock": false,
"setupFiles": [
"./setupJest.js"
]
}
}