-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 924 Bytes
/
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
{
"name": "karma-restify-server",
"version": "1.0.0",
"description": "Karma plugin to create a restify http server for unit tests",
"main": "index.js",
"scripts": {
"release:major": "npm version major && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:patch": "npm version patch && npm publish && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://weblogixx@github.com/weblogixx/karma-restify-server.git"
},
"keywords": [
"karma-plugin",
"http-server",
"mocking",
"restify"
],
"author": "Christian Schilling (cs@weblogixx.de)",
"license": "MIT",
"bugs": {
"url": "https://github.com/weblogixx/karma-restify-server/issues"
},
"homepage": "https://github.com/weblogixx/karma-restify-server#readme",
"dependencies": {
"restify": "^4.0.3"
}
}