-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
88 lines (88 loc) · 2.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "muenchhausen",
"version": "1.0.8",
"description": "Produce authentic mockup fake data",
"homepage": "https://github.com/s-a/muenchhausen",
"author": {
"name": "s-a",
"email": "stephan.ahlf@googlemail.com",
"url": "https://github.com/s-a"
},
"files": [
"lib"
],
"main": "lib/index.js",
"keywords": [
"test",
"testing",
"testing-tools",
"test-automation",
"tests",
"mock",
"mocking",
"mockup",
"mocks",
"fake",
"fake-content",
"fake-data"
],
"devDependencies": {
"benchmark": "^2.1.4",
"chance": "^1.1.4",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"eslint-config-xo-space": "^0.22.0",
"faker": "^4.1.0",
"glob": "^7.1.6",
"handlebars": "^4.7.3",
"istanbul": "^0.4.5",
"jsdox": "^0.4.10",
"json-loader": "^0.5.7",
"line-by-line": "^0.1.6",
"lru-cache": "^5.1.1",
"minimist": "^1.2.0",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"scandir": "^0.1.2",
"should": "^13.2.3",
"sigmund": "^1.0.1",
"systeminformation": "^5.6.4",
"uglify-js": "^3.7.7",
"webpack": "^4.41.5"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"mocha": true
}
},
"repository": "s-a/muenchhausen",
"scripts": {
"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",
"prepublish": "npm test",
"bump": "npm test && npm version patch && git push && git push --tags && npm publish",
"dev": "node index.js",
"mocha": "node node_modules/mocha/bin/_mocha",
"test": "npm run eslint && npm run mocha",
"docs": "node scripts/docs.js",
"bundle-all": "node build/pack-language.js --languagefilter * && uglifyjs --compress --mangle -- dist/muenchhausen-all-languages.js > dist\\muenchhausen-all-languages-min.js",
"bundle-de": "node build/pack-language.js --languagefilter de-DE && uglifyjs --compress --mangle -- dist/muenchhausen-de-de.js > dist\\muenchhausen-de-de-min.js",
"bundle-en": "node build/pack-language.js --languagefilter en-GB && uglifyjs --compress --mangle -- dist/muenchhausen-en-gb.js > dist\\muenchhausen-en-gb-min.js",
"bundle": "npm run webpack && npm run bundle-all && npm run bundle-de && npm run bundle-en",
"benchmark": "node scripts/benchmark.js > docs/BENCHMARK.md",
"make": "npm run tests && npm run bundle"
},
"license": "MIT",
"dependencies": {
"creditcard-generator": "0.0.7",
"google-libphonenumber": "^3.2.6",
"line-by-line": "^0.1.6",
"node-emoji": "^1.10.0",
"relaxed-json": "^1.0.3"
}
}