-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.6 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
{
"name": "pomelopay-connect-node-ts",
"version": "1.0.0",
"description": "NodeJS bindings with TypeScript support for Pomelo",
"repository": "pomelopay/pomelopay-connect-node-ts",
"files": [
"dist"
],
"main": "dist/index.js",
"scripts": {
"clean": "rm -r -f dist",
"static": "eslint .",
"build": "tsc",
"test:integration": "env-cmd mocha -r ts-node/register test/integration/**/*.spec.ts --timeout=30000",
"move_compiled_to_dist": "mv dist/lib/* dist && rmdir dist/lib",
"prepublish": "npm run clean && npm run build && npm run move_compiled_to_dist"
},
"keywords": [
"pomelo",
"pomelopay",
"nodejs",
"typescript"
],
"author": "Simon Verraest",
"license": "MIT",
"dependencies": {
"axios": "^0.24.0",
"htmlencode": "^0.0.4",
"lodash": "^4.17.21",
"moment": "^2.29.4"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/axios": "^0.14.0",
"@types/chai": "^4.3.4",
"@types/lodash": "^4.14.192",
"@types/mocha": "^9.1.1",
"@types/node": "^16.18.23",
"@types/sinon": "^10.0.6",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"chai": "^4.3.7",
"env-cmd": "^10.1.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-no-only-tests": "^2.6.0",
"merge2": "^1.4.1",
"mocha": "^9.2.2",
"nock": "^13.0.11",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"sinon": "^7.3.2",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.9.5"
},
"engines": {
"node": ">= v8.0.0"
}
}