-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
71 lines (71 loc) · 1.65 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
{
"name": "auth-routes",
"version": "0.0.1",
"description": "Helpful authentication routes for Node.js GitHub integrations",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "rimraf lib && tsc -p tsconfig.json",
"lint": "tslint --project tests",
"test": "tsc --noEmit -p tests && jest --coverage && npm run lint",
"test:update": "tsc --noEmit -p tests && jest --coverage -u && npm run lint",
"prepare": "npm test && npm run build"
},
"keywords": [
"github",
"github app",
"authentication",
"express"
],
"author": "Jason Etcovitch",
"repository": "github:probot/auth-routes",
"license": "ISC",
"dependencies": {
"@octokit/rest": "^15.2.6",
"node-fetch": "^2.3.0"
},
"devDependencies": {
"@types/express": "^4.16.0",
"@types/jest": "^23.3.10",
"@types/nock": "^9.3.0",
"@types/node": "^10.12.14",
"@types/node-fetch": "^2.1.4",
"@types/supertest": "^2.0.7",
"express": "^4.16.3",
"jest": "^23.6.0",
"nock": "^13.0.0",
"standard": "^11.0.1",
"supertest": "^3.0.0",
"ts-jest": "^23.10.5",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.17.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^5.0.0"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"coveragePathIgnorePatterns": [
"<rootDir>/lib/"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"transform": {
".+\\.tsx?$": "ts-jest"
},
"testMatch": [
"<rootDir>/tests/**/*.test.(ts|js)"
],
"globals": {
"ts-jest": {
"babelConfig": false
}
}
}
}