forked from mattwebbio/orbital-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.59 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
{
"name": "orbital-sync",
"version": "1.5.2",
"type": "module",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"install:hooks": "git config core.hooksPath '.hooks'",
"lint": "eslint . && prettier --ignore-unknown --check .",
"lint:fix": "eslint . --fix && prettier --ignore-unknown --write .",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "NODE_OPTIONS=--experimental-vm-modules npx jest --silent",
"test:e2e": "docker compose -f docker-compose.test.yml up --build --abort-on-container-exit",
"preversion": "npm run test",
"version": "auto-changelog -p && git add CHANGELOG.md && git commit -m 'Update CHANGELOG.md'",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattwebbio/orbital-sync.git"
},
"bin": "./dist/index.js",
"devDependencies": {
"@tsconfig/node18-strictest-esm": "^1.0.1",
"@types/jest": "^29.4.0",
"@types/luxon": "^3.2.0",
"@types/node": "^18.8.0",
"@types/nodemailer": "^6.4.7",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.56.0",
"auto-changelog": "^2.4.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.6.0",
"jest": "^29.4.1",
"nock": "^13.3.0",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
},
"dependencies": {
"@honeybadger-io/js": "^5.1.1",
"chalk": "^4.1.2",
"fetch-cookie": "^2.1.0",
"node-fetch": "^3.3.0",
"node-html-parser": "^6.1.4",
"nodemailer": "^6.9.1",
"sleep-promise": "^9.1.0"
}
}