-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
43 lines (43 loc) · 1.11 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",
"version": "2.4.0",
"description": "Connects NodeJS to the glorious world of the WooCommerce API",
"main": "lib/woocommerce.js",
"scripts": {
"exectests": "node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha",
"lint": "node_modules/.bin/eslint lib test --quiet",
"test": "npm run exectests && npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/Receiptful/node-woocommerce.git"
},
"keywords": [
"woocommerce",
"woo",
"woothemes",
"receiptful",
"api",
"wc"
],
"author": "Rick Craig @ Receiptful <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Receiptful/node-woocommerce/issues"
},
"homepage": "https://github.com/Receiptful/node-woocommerce",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^5",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-plugin-import": "^1.16.0",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"nock": "^7.2.2",
"sinon": "^1.17.3"
},
"dependencies": {
"oauth-1.0a": "^2.0.0",
"request": "^2.69.0"
}
}