-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
58 lines (58 loc) · 1.31 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
{
"name": "shred",
"version": "1.1.0-alpha-10",
"description": "A resource-oriented JavaScript HTTP client.",
"keywords": [
"http",
"client"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/pandastrike/shred/blob/master/LICENSE"
}
],
"homepage": "https://github.com/pandastrike/shred",
"bugs": {
"url": "https://github.com/pandastrike/shred/issues"
},
"authors": [
{
"name": "Dan Yoder",
"email": "dan@pandastrike.com"
}
],
"files": [
"lib",
"test",
"examples",
"src",
"README.md"
],
"main": "./lib/shred.js",
"repository": {
"type": "git",
"url": "git://github.com/pandastrike/shred.git"
},
"scripts": {
"prepublish": "coffee -o lib/ -c src/*.*coffee",
"test": "coffee test",
"watch": "coffee -o lib/ -cw src/*.*coffee",
"tag": "(node_modules/.bin/json -f package.json version | xargs -I version git tag -am version version) && git push --tags"
},
"dependencies": {
"fairmont": "1.0.0-beta-40",
"typely": "0.0.0",
"url-template": "^2.0.4",
"when": "^3.4.6"
},
"devDependencies": {
"amen": "1.0.0-alpha-03",
"c50n": "^0.7.0",
"coffee-script": "1.10.0",
"colors": "^0.6.2",
"json": "^9.0.3",
"through": "^2.3.4"
},
"engine": "node >= 0.11.x"
}