-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 792 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 792 Bytes
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
{
"name": "static-api-generator",
"version": "1.1.0",
"description": "Generate a static API layer from a tree of directories and files",
"main": "index.js",
"scripts": {
"test": "standard && jest",
"test-dev": "jest --watch"
},
"keywords": [
"api",
"static",
"json-api"
],
"author": "Eduardo Bouças <mail@eduardoboucas.com>",
"license": "MIT",
"dependencies": {
"deepmerge": "^1.5.0",
"js-yaml": "^3.9.0",
"md5": "^2.2.1",
"mkdirp-promise": "^5.0.1",
"multimatch": "^2.1.0",
"object-path": "^0.11.4",
"pluralize": "^5.0.0",
"rimraf-promise": "^2.0.0",
"walk": "^2.3.9"
},
"devDependencies": {
"jest": "^20.0.4",
"standard": "^10.0.2"
},
"standard": {
"ignore": [
"test/**/*"
]
}
}