-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.02 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
71
72
73
{
"name": "muenchhausen-client",
"version": "1.0.4",
"description": "Shell client to generate huge quantities of authentic fake data for testing purposes or mockups.",
"homepage": "https://github.com/s-a/muenchhausen-client",
"author": {
"name": "s-a",
"email": "stephan.ahlf@googlemail.com",
"url": "https://github.com/s-a"
},
"files": [
"lib"
],
"main": "lib/index.js",
"bin": {
"mh": "lib/index.js"
},
"preferGlobal": true,
"keywords": [
"test",
"testing",
"testing-tools",
"test-automation",
"tests",
"terminal",
"bash",
"shell",
"console",
"console-application",
"console-tool",
"mock",
"mocking",
"mockup",
"fake",
"fake-content",
"fake-data"
],
"eslintConfig": {
"extends": "xo-space",
"env": {
"mocha": true
}
},
"repository": "s-a/muenchhausen-client",
"scripts": {
"dev": "node index.js",
"dev-pipe": "echo \"now:$(date.now)\" | node lib/index.js --culture es-ES",
"dev-pipe-2": "echo \"now:$(date.now)\" | node lib/index.js --culture es-ES",
"lcov-file": "node node_modules/nyc/bin/nyc.js report --reporter=lcov",
"coverage": "node node_modules/nyc/bin/nyc.js --reporter=html --reporter=text mocha && npm run lcov-file",
"coveralls": "cat ./coverage/lcov.info | node node_modules/coveralls/bin/coveralls.js",
"eslint": "node node_modules/eslint/bin/eslint.js ./lib",
"webpack": "node_modules/.bin/webpack --config webpack.config.js",
"debug": "iron-node node_modules/mocha/bin/_mocha",
"bump": "npm test && npm version patch && git push && git push --tags && npm publish",
"mocha": "node node_modules/mocha/bin/_mocha",
"test": "npm run eslint && npm run coverage"
},
"license": "MIT",
"dependencies": {
"get-stdin": "^5.0.1",
"minimist": "^1.2.0",
"muenchhausen": "^1.0.2",
"n-cli": "^1.2.10"
},
"devDependencies": {
"coveralls": "^2.13.1",
"eslint": "^4.0.0",
"mocha": "^3.4.2",
"nyc": "^11.0.2",
"should": "^11.2.1"
}
}