-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.35 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
89
90
91
92
93
94
95
{
"name": "fabricatorjs",
"version": "0.1.2",
"description": "Generate fake test data",
"main": "lib/fabricator.js",
"scripts": {
"build": "webpack --mode=build",
"dev": "webpack --progress --colors --watch --mode=dev",
"lint": "node_modules/eslint/bin/eslint.js . --fix",
"test": "ava \"test/*.test.js\" --verbose",
"coverage": "nyc npm t",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"watch:test": "npm t -- --watch",
"watch:lint": "node node_modules/eslint-watch/bin/esw -w --fix"
},
"pre-commit": [
"lint",
"test"
],
"devDependencies": {
"ava": "^0.16.0",
"babel": "^6.5.2",
"babel-cli": "^6.9.0",
"babel-core": "^6.13.2",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.13.1",
"babel-register": "^6.9.0",
"coveralls": "^3.0.2",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.1",
"eslint-loader": "^1.4.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.0.0",
"eslint-plugin-react": "^6.1.2",
"eslint-watch": "^2.1.11",
"estraverse-fb": "^1.3.1",
"nyc": "^13.1.0",
"pre-commit": "^1.1.3",
"sinon": "^1.17.4",
"webpack": "^1.13.1"
},
"repository": {
"type": "git",
"url": "https://github.com/azakordonets/fabricator.js"
},
"nyc": {
"reporter": [
"lcov",
"text",
"html"
]
},
"ava": {
"require": [
"babel-register"
]
},
"keywords": [
"webpack",
"es6",
"starter",
"library",
"test data",
"fake data",
"generating",
"universal",
"umd"
],
"author": "Andrew Zakordonets",
"license": "MIT",
"bugs": {
"url": "https://github.com/azakordonets/fabricator.js/issues"
},
"homepage": "https://github.com/azakordonets/fabricator.js",
"dependencies": {
"babel-eslint": "^6.1.2",
"lodash": "^4.13.1",
"moment": "^2.13.0",
"uuid": "^3.3.2",
"random-altitude": "^1.0.1",
"random-coordinates": "^1.0.1",
"random-country": "^1.0.1",
"random-depth": "^1.0.1",
"random-geohash": "^1.0.1",
"random-geojson": "^1.0.1",
"random-lang": "^1.0.2",
"random-latitude": "^1.0.1",
"random-longitude": "^1.0.1",
"read-file-relative": "^1.2.0",
"rjson-search": "0.0.6",
"url": "^0.11.0"
}
}