-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.82 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "intuit-quickbook-payment",
"version": "1.1.0",
"description": "Unofficial SDK to access the Intuit Quickbook Payment API",
"keywords": [
"intuit",
"payment",
"credit card",
"eCheck",
"quickbooks"
],
"repository": {
"type": "git",
"url": "https://github.com/Villa-Rentals/intuit-payment-sdk.git"
},
"bugs": {
"url": "https://github.com/Villa-Rentals/intuit-payment-sdk/issues"
},
"author": {
"name": "Villa Rentals",
"email": "support@getvillarentals.com"
},
"license": "MIT",
"main": "./lib/intuit-quickbook-payment",
"scripts": {
"build": "NODE_ENV=build webpack --env dev && webpack --env build && npm run test",
"dev": "NODE_ENV=dev webpack --progress --colors --watch --env dev",
"test": "mocha --require babel-core/register --colors './test/**/*.test.js'",
"test:watch": "mocha --require babel-core/register --colors -w './test/**/*.test.js'",
"lint": "./node_modules/.bin/eslint . --fix",
"prepush": "npm run lint",
"docs:open": "open ./docs/index.html",
"docs": "./node_modules/.bin/esdoc"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.5",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"dotenv": "^5.0.1",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.13.1",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"husky": "^0.14.3",
"mocha": "^4.0.1",
"webpack": "^3.12.0",
"yargs": "^10.0.3"
},
"dependencies": {
"axios": "^0.18.0",
"uuid": "^3.3.2"
}
}