forked from stripe/stripe-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
45
46
{
"name": "clarityboard",
"version": "1.0.2",
"description": "Clarityboard SDK for Node.js",
"keywords": [
"clarityboard",
"dashboard",
"api"
],
"homepage": "https://github.com/lonnylot/clarityboard-node-sdk",
"author": "Lonny Kapelushnik <[email protected]> (https://www.clarityboard.com/)",
"contributors": [
"Stripe <[email protected]> (https://stripe.com/)"
],
"repository": {
"type": "git",
"url": "git://github.com/lonnylot/clarityboard-node-sdk.git"
},
"bugs:": "https://github.com/lonnylot/clarityboard-node-sdk/issues",
"engines": {
"node": ">=4"
},
"main": "lib/clarityboard.js",
"devDependencies": {
"chai": "~4.1.2",
"chai-as-promised": "~7.1.1",
"eslint": "^4.19.1",
"eslint-plugin-chai-friendly": "^0.4.0",
"mocha": "~5.0.5",
"mockserver": "^2.1.1",
"nyc": "^11.3.0"
},
"dependencies": {
"lodash.isplainobject": "^4.0.6",
"qs": "~6.5.1",
"safe-buffer": "^5.1.1"
},
"license": "MIT",
"scripts": {
"clean": "rm -rf ./.nyc_output ./node_modules/.cache ./coverage",
"mocha": "nyc mocha",
"test": "npm run lint && npm run mocha",
"lint": "eslint .",
"report": "nyc -r text -r lcov report"
}
}