forked from RappidDevelopment/quickbooks-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 977 Bytes
/
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
{
"name": "quickbooks-js",
"version": "1.0.0",
"author": "Rappid Development LLC",
"description": "A SOAP service implemented in Node.js that communicates with QuickBook's Web Connector",
"repository": {
"type": "git",
"url": "https://github.com/RappidDevelopment/quickbooks-js"
},
"bugs": {
"url": "https://github.com/RappidDevelopment/quickbooks-js/issues"
},
"scripts": {
"test": "mocha",
"start": "./bin/run",
"cover": "istanbul cover _mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"keywords": [
"qbwc",
"QuickBooks",
"QuickBooks Web Connector"
],
"license": "MIT",
"dependencies": {
"data2xml": "^1.2.5",
"node-uuid": "1.4.3",
"semver": "^5.3.0",
"soap": "0.9.1"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"mocha-lcov-reporter": "^1.2.0"
}
}