forked from woocommerce/wc-api-node
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.16 KB
/
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
41
42
43
{
"name": "woocommerce-api-heades-suport",
"description": "A Node.js wrapper for the WooCommerce REST API",
"version": "1.2.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": "petrozavodsky",
"keywords": [
"woocommerce",
"rest-api"
],
"license": "MIT",
"main": "index.js",
"dependencies": {
"bluebird": "^3.4.6",
"oauth-1.0a": "^2.0.0",
"request": "^2.75.0"
},
"devDependencies": {
"chai": "^3.5.0",
"istanbul": "^0.4.5",
"jscs": "^3.0.7",
"jshint": "^2.9.3",
"mocha": "^3.1.0",
"nock": "^8.0.0"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/petrozavodsky/wc-api-node.git"
},
"bugs": {
"url": "https://github.com/petrozavodsky/wc-api-node/issues"
},
"homepage": "https://github.com/petrozavodsky/wc-api-node#readme"
}