-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.63 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
{
"name": "integrations",
"version": "0.2.0",
"description": "Integrations for Todoist and Habitica.",
"main": "lib/index.js",
"type": "commonjs",
"scripts": {
"start": "NODE_DEBUG=info node lib/index.js",
"nyc": "nyc npm run mocha",
"test": "NODE_ENV=test mocha -r ts-node/register test/tests/*test.ts test/tests/**/*test.ts",
"coverage": "nyc npm run test",
"compile": "tsc -p .",
"dev:tsc": "tsc --watch -p .",
"dev:serve": "nodemon -e js -w lib lib/index.js",
"dev": "run-p dev:*",
"o-auth": "node ./scripts/o-auth.js",
"setup-webhooks": "ts-node ./scripts/setup-webhooks.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thudsonbu/integrations.git"
},
"keywords": [
"habitica",
"todoist",
"notion",
"hapi",
"axios",
"mocha",
"chai",
"rewire",
"sinon",
"typescript"
],
"author": "Thomas Hudson",
"license": "ISC",
"bugs": {
"url": "https://github.com/thudsonbu/integrations/issues"
},
"homepage": "https://github.com/thudsonbu/integrations#readme",
"dependencies": {
"@hapi/hapi": "^21.0.0",
"axios": "^1.2.1",
"mongodb": "^5.5.0"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/hapi": "^18.0.7",
"@types/hapi__hapi": "^20.0.13",
"@types/mocha": "^10.0.0",
"@types/node": "^18.15.0",
"@types/rewire": "^2.5.28",
"@types/sinon": "^10.0.13",
"chai": "^4.3.7",
"mocha": "^10.1.0",
"nock": "^13.2.9",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"sinon": "^15.0.4",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}