-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 1.99 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "veem-node-sdk",
"version": "1.1.1",
"description": "Node.js Library for the Veem Global Payments API",
"main": "dist/index.js",
"author": "",
"license": "MIT",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "https://github.com/veeminc/veem-node-sdk.git"
},
"scripts": {
"test": "jest ./lib",
"test:e2e": "jest ./e2e --runInBand",
"test:plugins": "jest ./jest/plugins",
"test:ci": "npm run test:plugins -- --forceExit & npm run test -- --forceExit",
"start": "nodemon --exec babel-node node/app.js",
"build": "babel lib -d dist --ignore '**/__tests__'"
},
"dependencies": {
"bluebird": "^3.7.1",
"lodash": "^4.17.15",
"querystring": "^0.2.0",
"superagent": "^4.1.0",
"uber-json-schema-filter": "^2.0.5"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/node": "^7.7.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-stage-0": "^7.0.0",
"@babel/runtime": "^7.7.2",
"JSV": "^4.0.2",
"babel-jest": "^24.9.0",
"babel-plugin-module-resolver": "^3.2.0",
"chai": "^4.2.0",
"chai-files": "^1.4.0",
"chai-jest-diff": "^1.0.2",
"chai-json-schema": "^1.5.1",
"chai-json-schema-ajv": "^4.0.1",
"chai-nock": "^1.2.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-markdown": "^1.0.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^2.7.0",
"jest": "^24.9.0",
"jest-circus": "^24.9.0",
"lint-staged": "^8.2.1",
"moment": "^2.24.0",
"nock": "^10.0.6",
"nodemon": "^1.19.4",
"opn": "^5.5.0",
"random-email": "^1.0.3",
"rimraf": "^2.7.1",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0",
"superstruct": "^0.6.2"
},
"lint-staged": {
"*.js": "eslint"
}
}