-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
80 lines (80 loc) · 2.33 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
72
73
74
75
76
77
78
79
80
{
"name": "classy-pay-core",
"version": "0.2.21",
"description": "Shared tools used in ClassyPay-related projects",
"main": "lib/index.js",
"scripts": {
"test": "yarn run lint && find test/ -iname \"test*.ts\" | xargs ./node_modules/istanbul/lib/cli.js cover _mocha -- -r ts-node/register",
"build": "yarn run lint && node_modules/typescript/bin/tsc -p ./",
"tslint": "find src/ test/ -iname \"*.ts\" | xargs node_modules/tslint/bin/tslint -c ./tslint.json",
"lint": "yarn run tslint",
"prepublish": "yarn run clean && yarn run test && yarn run build",
"clean": "rm -rfv lib"
},
"repository": {
"type": "git",
"url": "https://github.com/classy-org/classy-pay-core.git"
},
"keywords": [
"classy",
"pay",
"core"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/classy-org/classy-pay-core/issues"
},
"homepage": "https://github.com/classy-org/classy-pay-core",
"dependencies": {
"bluebird": "^3.5.1",
"bugsnag": "^2.1.3",
"bunyan": "^1.8.14",
"json-bigint": "^1.0.0",
"lodash": "^4.17.19",
"mysql": "^2.16.0",
"node-getopt": "^0.3.2",
"nodecredstash": "^2.0.2",
"oauth": "^0.9.15",
"parallel-transform": "^1.1.0",
"request-promise": "^4.2.6",
"source-map-support": "^0.5.19",
"uuid": "^7.0.3",
"yamljs": "^0.3.0"
},
"devDependencies": {
"ts-node": "^8.10.2",
"@types/aws-lambda": "^8.10.59",
"@types/bluebird": "^3.5.32",
"@types/bunyan": "^1.8.4",
"@types/events": "^3.0.0",
"@types/lodash": "^4.14.158",
"@types/node": "^13.13.15",
"@types/nodecredstash": "^2.0.1",
"@types/oauth": "^0.9.0",
"@types/request": "^2.48.5",
"@types/request-promise": "^4.1.46",
"aws-lambda": "^1.0.6",
"@types/mocha": "^7.0.2",
"@types/mock-require": "^2.0.0",
"@types/mysql": "^2.15.15",
"@types/node-getopt": "^0.2.31",
"@types/parallel-transform": "^1.1.0",
"@types/rewire": "^2.5.28",
"@types/should-sinon": "^0.0.5",
"@types/sinon": "^2.3.0",
"istanbul": "1.1.0-alpha.1",
"mocha": "^7.2.0",
"mocha-cli": "^1.0.1",
"mock-require": "^3.0.2",
"rewire": "^4.0.1",
"should": "^13.2.1",
"should-sinon": "^0.0.6",
"sinon": "^9.0.2",
"tslint": "^6.1.3",
"typescript": "^3.9.7"
},
"files": [
"lib"
]
}