This repository has been archived by the owner on Feb 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.45 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
{
"name": "airbud",
"version": "4.0.0",
"description": "node.js request wrapper adding support for retries, exponential back-off, fixture serving, JSON",
"keywords": [
"http",
"request",
"json",
"retries",
"testing",
"fixtures"
],
"author": "Kevin van Zonneveld <[email protected]>",
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"depurar": "0.3.0",
"request": "2.88.2",
"retry": "0.12.0"
},
"devDependencies": {
"chai": "4.3.9",
"coffee-script": "1.12.7",
"coffeelint": "2.1.0",
"fakefile": "0.0.9",
"mocha": "3.2.0",
"next-update": "3.6.0",
"should": "13.2.3"
},
"repository": {
"type": "git",
"url": "git://github.com/kvz/airbud.git"
},
"directories": {
"lib": "./lib"
},
"scripts": {
"build": "coffee -c -o lib src",
"lint": "coffeelint --file ./coffeelint.json src",
"release:major": "env SEMANTIC=major npm run release",
"release:minor": "env SEMANTIC=minor npm run release",
"release:patch": "env SEMANTIC=patch npm run release",
"release": "npm version ${SEMANTIC:-patch} -m \"Release %s\" && npm run build && git push && git push --tags && npm publish",
"test": "npm run build && env DEBUG=Airbud:* mocha --compilers coffee:coffee-script --require \"coffee-script/register\" --reporter spec test/ --grep \"${GREP}\"",
"upgrade:modules": "next-update --keep true --tldr"
},
"license": "MIT",
"main": "./index"
}