-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 1014 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
40
{
"name": "500px",
"description": "A wrapper for the 500px.com API",
"keywords": [
"api",
"500px"
],
"version": "0.5.1",
"homepage": "http://ro-ka.github.com/node-500px/",
"repository": "git://github.com/ro-ka/node-500px.git",
"author": {
"name": "Robert Katzki",
"email": "robert@katzki.de",
"url": "http://katzki.de/"
},
"main": "./lib/api500px.js",
"scripts": {
"lint": "./node_modules/.bin/jshint .",
"pretest": "npm run-script lint",
"test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha test",
"posttest": "./node_modules/.bin/istanbul check-coverage && rm -rf coverage",
"prepublish": "npm test && npm prune"
},
"devDependencies": {
"istanbul": "^0.3.0",
"jshint": "^2.5.5",
"mocha": "^1.21.4",
"should": "^4.0.4"
},
"dependencies": {},
"engines": {
"node": ">= 0.4.0"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/ro-ka/node-500px/raw/master/LICENSE"
}
]
}