-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
90 lines (90 loc) · 2.55 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
{
"name": "fakerator",
"version": "0.3.6",
"description": "Random data generator with localization",
"main": "dist/fakerator.js",
"types": "dist/fakerator.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"prebuild": "npm run test",
"copytype": "copyfiles fakerator.d.ts dist",
"build": "webpack --config config/webpack.build.config.js && npm run copytype",
"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/fakerator.d.ts",
"dist/locales",
"src",
"vendor"
],
"keywords": [
"fake",
"contextual",
"casual",
"random",
"generator",
"mocks",
"test"
],
"author": "Icebob",
"license": "MIT",
"bugs": {
"url": "https://github.com/icebob/fakerator/issues"
},
"homepage": "https://github.com/icebob/fakerator#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-istanbul-loader": "0.1.0",
"babel-loader": "6.2.9",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "3.5.0",
"conventional-changelog-cli": "1.2.0",
"copyfiles": "^2.4.1",
"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.4",
"karma-sinon-chai": "1.2.4",
"karma-sourcemap-loader": "^0.3.8",
"karma-spec-reporter": "0.0.34",
"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.16",
"sinon": "1.17.7",
"sinon-chai": "2.8.0",
"uuid": "3.0.1",
"webpack": "1.14.0",
"webpack-merge": "2.3.1"
}
}