-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.68 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
{
"name": "drupal-react-oauth-provider",
"version": "1.1.0",
"description": "Drupal React Oauth Provider and Hooks for REST / JSONAPI etc.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"dependencies": {},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^12.1.4",
"@testing-library/react-hooks": "^7.0.2",
"@types/enzyme": "^3.10.11",
"@types/jest": "^27.4.1",
"@types/react": "^17.0.43",
"@types/testing-library__jest-dom": "^5.14.3",
"enzyme": "^3.11.0",
"jest": "^27.5.1",
"node-fetch": "^3.2.3",
"prettier": "^2.6.1",
"ts-jest": "^27.1.4",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.6.3",
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/niallmurphy-ie/drupal-react-oauth-provider.git"
},
"bugs": {
"url": "https://github.com/niallmurphy-ie/drupal-react-oauth-provider/issues"
},
"files": [
"lib/**/*"
],
"keywords": [
"React",
"Drupal",
"Hooks",
"Oauth",
"Oauth2",
"Rest",
"Api",
"Login",
"Authorization",
"User",
"Library"
],
"author": "Niall Murphy",
"license": "MIT",
"moduleDirectories": [
"node_modules"
]
}