-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 957 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
31
32
33
34
35
36
37
38
39
{
"name": "fleece",
"description": "Fetch URLs and describe them in one line.",
"homepage": "https://github.com/Floobits/node-fleece",
"repository": {
"type": "git",
"url": "git://github.com:Floobits/node-fleece.git"
},
"bugs": {
"url": "https://github.com/Floobits/node-fleece/issues"
},
"contributors": [
"Matt Kaniaris <[email protected]>",
"Geoff Greer <[email protected]>"
],
"version": "0.3.5",
"dependencies": {
"cheerio": "0.x",
"request": "2.x"
},
"devDependencies": {
"eslint": "3.x",
"eslint-config-floobits": "*"
},
"engines": {
"node": ">=4.0"
},
"main": "lib/fleece.js",
"directories": {
"lib": "./lib"
},
"scripts": {
"test": "NODE_PATH=lib:tests node ./tests/test.js",
"debug": "NODE_PATH=lib:tests node debug ./tests/test.js",
"install": "",
"lint": "./node_modules/eslint/bin/eslint.js lib/*.js tests/*.js"
},
"license": "Apache-2.0"
}