This repository was archived by the owner on May 12, 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
43 lines (43 loc) · 1.31 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.31 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
42
43
{
"name": "kinda-http-client",
"version": "0.2.10",
"description": "...",
"repository": {
"type": "git",
"url": "git://github.com/kinda/kinda-http-client"
},
"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": {
"buffers": "^0.1.1",
"kinda-object": "^0.3.0",
"lodash": "^3.9.1",
"superagent": "1.3.0"
},
"devDependencies": {
"babel": "^5.4.7",
"babel-eslint": "^4.0.5",
"chai": "^2.3.0",
"eslint": "^1.0.0",
"eslint-config-kinda": "^0.2.0",
"kinda-util": "^0.2.6",
"koa": "^0.21.0",
"koa-body": "^1.2.1",
"koa-router": "^5.1.2",
"mocha": "^2.2.5"
},
"browser": {
"buffers": false
}
}