-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.49 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": "moleculer-stripe",
"version": "2.0.0",
"description": "Moleculer service for stripe",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"dev": "moleculer-runner --repl test/__fixtures__/stripe.service.js",
"ci": "jest --watch",
"test": "jest --coverage",
"lint": "eslint --ext=.js src test index.js",
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LuxChanLu/moleculer-stripe.git"
},
"keywords": [
"moleculer",
"stripe"
],
"author": "Hugo Meyronneinc <hugo@lxc.lu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/LuxChanLu/moleculer-stripe/issues"
},
"homepage": "https://github.com/LuxChanLu/moleculer-stripe#readme",
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
]
},
"engines": {
"node": ">= 12.x.x"
},
"dependencies": {
"change-case": "^4.1.2",
"deepmerge": "^4.2.2",
"fastest-validator": "^1.16.0",
"pluralize": "^8.0.0",
"stripe": "^11.5.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"eslint": "^8.30.0",
"eslint-plugin-jest": "^27.1.7",
"jest": "^29.3.1",
"jest-cli": "^29.3.1",
"moleculer": "^0.14.27",
"moleculer-repl": "^0.7.3",
"moleculer-web": "^0.10.5",
"request": "^2.88.0",
"request-promise-native": "^1.0.8"
}
}