forked from mathusiast/Faker.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.01 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
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
89
90
91
92
93
94
95
96
97
{
"name": "phaker",
"description": "Generate massive amounts of fake contextual data",
"version": "6.0.1",
"keywords": [
"faker",
"phaker",
"fake",
"mock",
"stub",
"false",
"data",
"dummy"
],
"author": {
"name": "tripu",
"email": "t@tripu.info",
"url": "https://tripu.info/"
},
"contributors": [
{
"name": "tripu",
"email": "t@tripu.info",
"url": "https://tripu.info/"
},
{
"name": "Marak Squires",
"email": "marak.squires@gmail.com",
"url": "https://marak.com/"
}
],
"repository": {
"type": "git",
"url": "https://github.com/tripu/faker.js.git"
},
"scripts": {
"browser": "gulp browser",
"jsdoc": "gulp jsdoc",
"readme": "gulp readme",
"lint": "jshint ./lib --config ./.jshintrc",
"test": "mocha test/*.*.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepack": "cp .github/* .",
"postpack": "rm README.md CONTRIBUTING.md"
},
"nyc": {
"all": false,
"include": [
"lib/**/*.js",
"vendor/*.js"
],
"exclude": [
"coverage",
"locales",
"modules",
"white",
"docs",
"docker",
"public",
"reports",
"tests",
"node_modules"
],
"reporter": [
"html",
"lcov",
"clover"
],
"report-dir": "./reports/coverage"
},
"devDependencies": {
"browserify": "^16.5.2",
"coveralls": "^3.1.0",
"gulp": "^4.0.2",
"gulp-gh-pages": "^0.5.4",
"gulp-jsdoc3": "^3.0.0",
"gulp-mustache": "^5.0.0",
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2",
"ink-docstrap": "1.1.4",
"jsdoc": "^3.4.0",
"jshint": "0.9.0",
"lodash": "^4.6.1",
"mocha": "^8.1.1",
"node-minify": "*",
"nyc": "^15.1.0",
"optimist": "0.3.5",
"sinon": "^9.0.3",
"through2": "2.0.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"vinyl-transform": "^1.0.0"
},
"license": "MIT",
"main": "index.js",
"dependencies": {}
}