forked from woocommerce/wc-api-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.03 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.03 KB
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": "woocommerce-api",
"description": "A Node.js wrapper for the WooCommerce REST API",
"version": "1.5.0",
"scripts": {
"lint": "jshint .",
"checkStyle": "jscs .",
"pretest": "npm run-script lint && npm run-script checkStyle",
"test": "istanbul cover ./node_modules/.bin/_mocha test.js",
"posttest": "istanbul check-coverage --statements 85 --branches 70 --functions 100 --lines 90 && rm -rf coverage"
},
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"author": "Claudio Sanches @ Automattic.com",
"keywords": [
"woocommerce",
"rest-api"
],
"license": "MIT",
"main": "index.js",
"dependencies": {
"bluebird": "3.5.5",
"create-hmac": "1.1.7",
"oauth-1.0a": "2.2.6",
"request": "2.88.0"
},
"devDependencies": {
"chai": "^3.5.0",
"istanbul": "^0.4.5",
"jscs": "3.0.7",
"jshint": "2.10.2",
"mocha": "^3.1.0",
"nock": "^8.0.0"
},
"repository": {
"type": "git",
"url": "git@github.com:woocommerce/wc-api-node.git"
}
}