forked from devlucky/Kakapo.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.27 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": "kakapo",
"version": "0.1.4",
"description": "Next generation mocking framework in Javascript",
"main": "src/index.js",
"scripts": {
"build": "make build",
"codecov": "make codecov",
"readme": "node create-readme.js",
"test": "make test",
"test:browser": "make test-browser",
"test:karma": "make test-karma",
"test:karma:watch": "make test-karma-watch",
"test:travis": "make test-travis",
"semantic-release": "make semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devlucky/Kakapo.js.git"
},
"author": "devlucky",
"license": "MIT",
"bugs": {
"url": "https://github.com/devlucky/Kakapo.js/issues"
},
"homepage": "https://github.com/devlucky/Kakapo.js#readme",
"devDependencies": {
"babel-core": "^5.4.3",
"babel-loader": "5.4.0",
"babel-plugin-__coverage__": "0.111111.0",
"babel-plugin-transform-es2015-modules-umd": "^6.8.0",
"babel-preset-es2015": "6.6.0",
"babelify": "7.3.0",
"browserify": "13.0.0",
"codecov.io": "0.1.6",
"eslint": "2.9.0",
"eslint-config-airbnb-base": "2.0.0",
"eslint-plugin-import": "1.7.0",
"ghooks": "1.2.1",
"http-server": "~0.7.1",
"jquery": "^2.2.4",
"json-loader": "0.5.4",
"karma": "0.13.22",
"karma-browserify": "5.0.3",
"karma-coverage": "0.5.5",
"karma-firefox-launcher": "0.1.7",
"karma-tap": "1.0.4",
"mocha-phantomjs": "^4.0.1",
"npm-run-all": "1.7.0",
"semantic-release": "4.3.5",
"serve": "1.4.0",
"superagent": "^2.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.5.1",
"tape-dom": "0.0.10",
"tape-run": "^2.1.3",
"watchify": "3.7.0",
"webpack": "~1.4.4",
"webpack-dev-server": "~1.6.5"
},
"dependencies": {
"faker": "^3.1.0",
"lodash": "4.10.0",
"parse-url": "1.3.0",
"path-match": "1.2.4",
"path-to-regexp": "^1.2.1",
"query-string": "4.1.0",
"relaser": "^0.2.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"directories": {
"test": "test"
},
"keywords": [
"mocking",
"framework",
"kakapo",
"fetch",
"XMLHttpRequest",
"fake",
"stub",
"request"
]
}