forked from getconversio/node-bigcommerce
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.17 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.17 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
41
42
43
44
{
"name": "node-bigcommerce",
"version": "2.1.2",
"description": "A node module for authentication and use with the BigCommerce API",
"main": "./lib/bigcommerce",
"scripts": {
"exectests": "node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha",
"jshint": "node_modules/.bin/jshint lib",
"jscs": "node_modules/.bin/jscs lib",
"lint": "npm run jshint && npm run jscs",
"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 <rick@conversio.com> (https://conversio.com)",
"license": "MIT",
"bugs": "https://github.com/getconversio/node-bigcommerce/issues",
"homepage": "https://github.com/getconversio/node-bigcommerce",
"devDependencies": {
"chai": "^3.5.0",
"istanbul": "^0.4.2",
"jscs": "^2.9.0",
"jshint": "^2.9.1",
"mocha": "^2.4.5",
"nock": "^7.0.2",
"require-reload": "^0.2.2",
"sinon": "^1.17.3"
},
"dependencies": {
"es6-promise": "^3.1.2"
}
}