-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 941 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
{
"name": "change-api",
"description": "Change.org API client",
"version": "1.0.2",
"dependencies": {
"defaults": "^1.0.0",
"request": "^2.51.0"
},
"scripts": {
"lint": "jshint .",
"pretest": "npm run-script lint",
"test": "istanbul cover ./node_modules/.bin/_mocha test",
"record": "./test/tools/recorder.js",
"posttest": "istanbul check-coverage --statements 85 --branches 70 --functions 100 --lines 90 && rm -rf coverage",
"prepublish": "npm test && npm prune"
},
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"author": "Adrián Estrada <edsadr@gmail.com>",
"license": "MIT",
"devDependencies": {
"async": "^0.9.0",
"chai": "^1.10.0",
"istanbul": "^0.3.2",
"jshint": "^2.5.6",
"mocha": "^1.21.4",
"nock": "^0.57.0",
"replace": "^0.3.0"
},
"repository": {
"type": "git",
"url": "git@github.com:edsadr/change-api.git"
}
}