This repository was archived by the owner on May 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.33 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.33 KB
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
{
"name": "kinda-remote-repository",
"version": "0.5.2",
"description": "...",
"repository": {
"type": "git",
"url": "git://github.com/kinda/kinda-remote-repository"
},
"main": "lib/index.js",
"scripts": {
"compile": "babel src --out-dir lib",
"prepublish": "npm run compile",
"release": "npm run lint && npm test && (git checkout --quiet master && test -z \"$(git status --porcelain)\" && npm version $npm_config_release_type && git push --follow-tags) || echo \"An error occured (unclean repository?)\"",
"release-patch": "npm run release --release-type=patch",
"release-minor": "npm run release --release-type=minor",
"release-major": "npm run release --release-type=major",
"lint": "eslint .",
"test": "mocha --harmony --compilers js:babel/register --ui tdd"
},
"author": "Manuel Vila <mvila@3base.com>",
"license": "MIT",
"dependencies": {
"kinda-abstract-repository": "^0.4.0",
"kinda-http-client": "^0.2.0",
"kinda-util": "^0.2.0",
"lodash": "^3.9.1",
"qs": "^3.1.0"
},
"devDependencies": {
"babel": "^5.8.21",
"babel-eslint": "^4.0.5",
"chai": "^2.3.0",
"eslint": "^1.0.0",
"eslint-config-kinda": "^0.2.0",
"kinda-collection": "^0.6.0",
"koa": "^0.21.0",
"koa-body": "^1.2.1",
"koa-router": "^5.1.1",
"mocha": "^2.2.5"
}
}