-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.11 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
{
"name": "dampfplauderer",
"version": "0.0.3",
"description": "Easily fake APIs",
"main": "index.js",
"scripts": {
"test": "npm run test-verbose | tap-dot",
"test-verbose": "standard && nyc --reporter=html tape src/**/*.test.js"
},
"bin": {
"dampfplauderer": "cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jmtoball/dampfplauderer.git"
},
"keywords": [
"swagger",
"json",
"api",
"fake",
"Faker.js"
],
"author": "Johannes Maximilian Toball",
"license": "MIT",
"bugs": {
"url": "https://github.com/jmtoball/dampfplauderer/issues"
},
"homepage": "https://github.com/jmtoball/dampfplauderer#readme",
"devDependencies": {
"eslint": "^4.18.2",
"eslint-config-standard": "^11.0.0",
"fetch-mock": "^6.0.1",
"isomorphic-fetch": "^2.2.1",
"nyc": "^11.4.1",
"sinon": "^4.4.2",
"standard": "^11.0.0",
"tap-dot": "^1.0.5",
"tape": "^4.9.0"
},
"dependencies": {
"await-fs": "^1.0.0",
"express": "^4.16.2",
"faker": "^4.1.0",
"json-schema-faker": "^0.5.0-rc13",
"yamljs": "^0.3.0"
}
}