-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
44 lines (44 loc) · 1.2 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
44
{
"name": "node-bigcommerce",
"version": "4.1.0",
"description": "A node module for authentication and use with the BigCommerce API",
"main": "./lib/bigcommerce",
"scripts": {
"autotest": "node_modules/.bin/supervisor -q -n exit -x node_modules/.bin/_mocha --",
"exectests": "node_modules/.bin/nyc ./node_modules/.bin/_mocha",
"lint": "node_modules/.bin/eslint lib test",
"test": "npm run exectests && npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/getconversio/node-bigcommerce.git"
},
"keywords": [
"bigcommerce",
"oauth2.0",
"oauth",
"conversio",
"api",
"ecommerce",
"node",
"npm"
],
"author": "Rick Craig <[email protected]> (https://conversio.com)",
"license": "MIT",
"bugs": "https://github.com/getconversio/node-bigcommerce/issues",
"homepage": "https://github.com/getconversio/node-bigcommerce",
"devDependencies": {
"agentkeepalive": "^3.1.0",
"chai": "^3.5.0",
"eslint": "^4.9.0",
"eslint-config-conversio": "^1.0.4",
"mocha": "^6.1.4",
"nock": "^10.0.1",
"nyc": "^14.1.1",
"sinon": "^1.17.3",
"supervisor": "^0.12.0"
},
"dependencies": {
"debug": "^3.1.0"
}
}