forked from ralucas/oauth2-errors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.19 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
{
"name": "@interop/oauth2-errors",
"version": "2.1.0",
"description": "Errors and handler for Oauth 2.0 spec errors.",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf lib/*",
"compile": "./node_modules/.bin/tsc",
"prepublishOnly": "npm test && npm run compile",
"test": "./node_modules/.bin/jest",
"watch": "./node_modules/.bin/tsc -w"
},
"keywords": [
"oauth",
"oauth2",
"errors",
"error"
],
"author": "R.A. Lucas",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/interop-alliance/oauth2-errors.git"
},
"devDependencies": {
"@types/node": "9.6.5",
"jest": "22.4.3",
"node-mocks-http": "1.5.8",
"source-map-support": "0.5.4",
"ts-jest": "22.4.2",
"typescript": "2.8.1"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"testEnvironment": "node",
"testMatch": [
"<rootDir>__tests__/*.spec.{ts|tsx|js|jsx}"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
}
}
}