forked from icebob/fakerator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.43 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": "fakerator",
"version": "0.3.3",
"description": "Random data generator with localization",
"main": "dist/fakerator.js",
"directories": {
"test": "test"
},
"scripts": {
"prebuild": "npm run test",
"build": "webpack --config config/webpack.build.config.js",
"lint": "eslint --ext=.js lib test/specs",
"coverall": "cat ./test/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"coverage": "npm run test && npm run coverall",
"changelog": "conventional-changelog -i CHANGELOG.md -s",
"pretest": "npm run lint",
"test": "karma start test/karma.conf.js",
"ci": "karma start test/karma.conf.js --auto-watch --no-single-run --reporters=dots",
"release": "git push --follow-tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/icebob/fakerator.git"
},
"files": [
"dist/fakerator.js",
"dist/fakerator.min.js",
"dist/locales",
"src",
"vendor",
"test"
],
"keywords": [
"fake",
"contextual",
"casual",
"random",
"generator",
"mocks",
"test"
],
"types": "./fakerator.d.ts",
"author": "Icebob",
"license": "MIT",
"bugs": {
"url": "https://github.com/icebob/fakerator/issues"
},
"homepage": "https://github.com/icebob/fakerator#readme",
"devDependencies": {
"babel-core": "6.21.0",
"babel-istanbul-loader": "0.1.0",
"babel-loader": "6.2.9",
"babel-plugin-transform-runtime": "6.15.0",
"babel-preset-es2015": "6.13.2",
"babel-preset-stage-0": "6.5.0",
"chai": "3.5.0",
"conventional-changelog-cli": "1.2.0",
"coveralls": "2.11.15",
"del": "2.2.2",
"eslint": "3.13.0",
"eslint-friendly-formatter": "2.0.7",
"glob": "7.1.1",
"inject-loader": "2.0.1",
"karma": "1.3.0",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "1.0.1",
"karma-coverage": "1.1.1",
"karma-coveralls": "1.1.2",
"karma-mocha": "1.2.0",
"karma-phantomjs-launcher": "1.0.1",
"karma-sinon-chai": "1.2.4",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "1.8.0",
"lodash": "^4.17.21",
"lolex": "1.5.2",
"mocha": "2.5.3",
"mocha-generators": "1.2.0",
"mocha-loader": "1.1.0",
"password-generator": "^2.3.2",
"phantomjs-prebuilt": "2.1.14",
"sinon": "1.17.7",
"sinon-chai": "2.8.0",
"uuid": "3.0.1",
"webpack": "1.14.0",
"webpack-merge": "2.3.1"
}
}