forked from pushplay/stripe-stateful-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.96 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
{
"name": "stripe-stateful-mock",
"version": "0.0.16",
"description": "A half-baked, stateful Stripe mock server",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"clean": "rimraf ./dist",
"lint": "eslint . --ext .ts,.tsx",
"prepublishOnly": "npm run clean && npm run build && npm run lint && npm run test",
"run": "LOG_LEVEL=${LOG_LEVEL:=info} node dist/index.js",
"run:debug": "LOG_LEVEL=debug npm run run",
"test": "LOG_LEVEL=${LOG_LEVEL:=silent} mocha --recursive --timeout 5000 --require ts-node/register --require ./test/requireDotEnv.ts --exit \"test/**/*.ts\"",
"test:debug": "LOG_LEVEL=trace npm run test"
},
"bin": "./dist/cli.js",
"repository": {
"type": "git",
"url": "git+https://github.com/pushplay/stripe-stateful-mock.git"
},
"keywords": [
"mock",
"mock-server",
"stripe",
"test",
"unittest"
],
"contributors": [
"Jeffery Grajkowski <[email protected]> (https://github.com/pushplay)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pushplay/stripe-stateful-mock/issues"
},
"homepage": "https://github.com/pushplay/stripe-stateful-mock#readme",
"dependencies": {
"basic-auth": "^2.0.1",
"body-parser": "^1.19.0",
"deep-equal": "^2.0.4",
"express": "^4.17.1",
"loglevel": "^1.7.0"
},
"devDependencies": {
"@types/basic-auth": "^1.1.3",
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/deep-equal": "^1.0.1",
"@types/dotenv-safe": "^8.1.1",
"@types/express": "^4.17.9",
"@types/loglevel": "^1.6.3",
"@types/mocha": "^8.0.4",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"chai": "^4.2.0",
"chai-exclude": "^2.0.2",
"dotenv-safe": "^8.2.0",
"eslint": "^7.13.0",
"mocha": "^8.2.1",
"rimraf": "^3.0.2",
"stripe": "^8.125.0",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
}
}