-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 2 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
{
"name": "@fusebit/everyauth-express",
"version": "2.1.3",
"description": "EveryAuth is the easiest way for your app to access APIs like Slack, Salesforce, or Github.",
"main": "libc/index.js",
"files": [
"libc/**/*"
],
"scripts": {
"build": "tsc -b",
"test": "jest --testPathIgnorePatterns test/manual",
"test:setup": "scripts/test/populateTestProfiles.sh",
"test:manual": "jest test/manual",
"prettier:fix": "git ls-tree -r `git branch --show-current` --name-only | grep -E '.[tj]?sx?$|.yaml$|.json$' | xargs -P 1 prettier --write",
"prettier:check": "git ls-tree -r `git branch --show-current` --name-only | grep -E '.[tj]?sx?$|.yaml$|.json$' | xargs -P 1 -I \"{}\" sh -c '[ -f {} ] && echo {} || true' | xargs prettier --check",
"lint:check": "eslint . --ext .ts --color --ignore-path .eslintignore",
"lint:fix": "eslint . --ext .ts --color --fix --ignore-path .eslintignore",
"identities:clear": "scripts/utility/removeIdentities.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fusebit/everyauth-express.git"
},
"author": "Fusebit, Inc",
"license": "ISC",
"bugs": {
"url": "https://github.com/fusebit/everyauth-express/issues"
},
"homepage": "https://github.com/fusebit/everyauth-express#readme",
"devDependencies": {
"@slack/web-api": "^6.7.1",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.23",
"@types/superagent": "^4.1.15",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-security": "^1.4.0",
"http-terminator": "^3.2.0",
"jest": "^27.5.1",
"open": "^8.4.0",
"prettier": "^2.0.5",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"dependencies": {
"debug": "^4.3.4",
"express": "^4.17.3",
"jsonwebtoken": "^8.5.1",
"superagent": "^7.1.1"
}
}