-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.03 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
72
73
74
75
76
77
{
"name": "@atayahmet/react-axios-token-provider",
"version": "1.0.5",
"description": "React Axios Token Provider package is a make easy what repetitive processes.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"dist",
"lib/**/*"
],
"directories": {
"lib": "lib"
},
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"test": "jest --config ./jest.config.js",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atayahmet/react-axios-token-provider.git"
},
"keywords": [
"react",
"react-native",
"axios",
"jwt",
"axios token",
"axios auth token",
"access token",
"refresh token",
"csrf token",
"token manager",
"provider"
],
"author": "Ahmet ATAY",
"license": "MIT",
"bugs": {
"url": "https://github.com/atayahmet/react-axios-token-provider/issues"
},
"homepage": "https://github.com/atayahmet/react-axios-token-provider#readme",
"peerDependencies": {
"react": ">= 16.3.0",
"react-dom": ">= 16.3.0"
},
"devDependencies": {
"@types/jest": "^24.0.19",
"@types/jsdom": "^12.2.4",
"@types/react": "^16.9.5",
"@types/react-dom": "^16.9.1",
"@types/react-test-renderer": "^16.9.1",
"@types/sinon": "^10.0.13",
"axios-mock-adapter": "^1.17.0",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-test-renderer": "^16.11.0",
"sinon": "^14.0.2",
"ts-jest": "^24.1.0",
"tslint": "^5.19.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.2"
},
"dependencies": {
"@util-funcs/object-get": "0.0.2",
"axios": "^0.21.1",
"prop-types": "^15.7.2"
}
}