This repository has been archived by the owner on May 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 2.14 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
{
"name": "commercetools-subscriptions",
"version": "0.0.2",
"description": "Cron job based service which manages subscriptions, reminders and triggers subscription orders based on the schedule",
"exports": "./index.js",
"type": "module",
"directories": {
"test": "test"
},
"scripts": {
"check-coverage": "c8 check-coverage --lines 89",
"test": "c8 npm run test-run && npm run check-coverage",
"test-run": "npm run unit && npm run integration",
"check": "npm run lint && prettier --check .",
"unit": "mocha \"test/unit/**/*.spec.js\"",
"integration": "mocha \"test/integration/**/*.spec.js\"",
"lint": "eslint --fix ./src ./test",
"format": "prettier --write .",
"setup-subscription-states": "node ./src/setup/setup-states.js",
"doctoc": "doctoc --title '# Table of Contents' ./docs"
},
"engines": {
"node": ">= 14",
"npm": ">= 7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commercetools/commercetools-subscriptions.git"
},
"author": {
"name": "commercetools Professional Services",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/commercetools/commercetools-subscriptions/issues"
},
"homepage": "https://github.com/commercetools/commercetools-subscriptions#readme",
"dependencies": {
"@commercetools/sdk-client-v2": "^2.0.0",
"@commercetools/platform-sdk": "^4.0.0",
"@commercetools/sync-actions": "^5.0.0",
"cron-parser": "^4.2.1",
"isomorphic-fetch": "^3.0.0",
"lodash": "^4.17.21",
"p-map": "^6.0.0",
"pino": "^8.0.0",
"rc": "^1.2.8",
"verror": "1.10.1"
},
"devDependencies": {
"c8": "7.13.0",
"chai": "4.3.7",
"chai-as-promised": "7.1.1",
"cross-env": "7.0.3",
"doctoc": "2.2.1",
"eslint": "8.19.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"lockfile-lint": "4.10.1",
"mocha": "10.2.0",
"nock": "13.3.1",
"prettier": "2.8.8",
"timekeeper": "2.2.0"
},
"mocha": {
"timeout": 120000,
"exit": true,
"full-trace": true
}
}