-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.58 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
{
"name": "oauth-parameters-registry",
"version": "1.1.1",
"main": "dist/index.js",
"scripts": {
"generate-data": "ts-node src/scripts/importAndProcessDatasources.ts",
"build": "tsc",
"pretty": "prettier --write .",
"lint": "eslint .",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"files": [
"dist/data",
"dist/lib",
"dist/index.js"
],
"keywords": [
"oauth",
"oauth2",
"parameters",
"registry",
"iana",
"ietf",
"rfc",
"json",
"data",
"csv"
],
"author": "Andy Barlow",
"license": "MIT",
"description": "A library for working with the IANA OAuth Parameters Registry",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"dependencies": {
"iana-registry-data-lib": "^1.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/0xandybarlow/oauth-parameters-registry.git"
},
"bugs": {
"url": "https://github.com/0xandybarlow/oauth-parameters-registry/issues"
},
"homepage": "https://github.com/0xandybarlow/oauth-parameters-registry#readme",
"engines": {
"node": ">=14.0.0"
}
}