forked from woocommerce/wc-api-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1001 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
{
"name": "woocommerce-api",
"description": "A Node.js wrapper for the WooCommerce REST API",
"version": "1.1.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 @ WooThemes.com",
"keywords": [
"woocommerce",
"rest-api"
],
"license": "MIT",
"main": "index.js",
"dependencies": {
"oauth-1.0a": "^1.0.1",
"request": "^2.67.0"
},
"devDependencies": {
"chai": "^3.4.1",
"istanbul": "^0.4.1",
"jscs": "^2.6.0",
"jshint": "^2.9.1-rc1",
"mocha": "^2.3.4",
"nock": "^3.4.0"
},
"repository": {
"type": "git",
"url": "[email protected]:woothemes/wc-api-node.git"
}
}