This repository was archived by the owner on Oct 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.08 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.08 KB
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": "ra-feathersjs-oauth",
"version": "0.0.7",
"description": "An oauth-based feathersjs client for react admin and any similar frameworks",
"private": false,
"main": "lib/index.js",
"types": "lib/index.d.ts",
"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 test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && npm run typedoc && git add -A src && git add -A docs",
"postversion": "git push && git push --tags",
"typedoc": "typedoc --out docs src --theme minimal",
"coveralls": "jest --coverage --config jestconfig.json && cat ./testcoverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sopherapps/ra-feathersjs-oauth.git"
},
"keywords": [
"react-admin",
"feathersjs",
"oauth"
],
"author": "Martin Ahindura",
"license": "MIT",
"bugs": {
"url": "https://github.com/sopherapps/ra-feathersjs-oauth/issues"
},
"homepage": "https://github.com/sopherapps/ra-feathersjs-oauth#readme",
"files": [
"lib/**/*"
],
"dependencies": {
"@feathersjs/client": "^4.3.0-pre.2",
"socket.io-client": "^2.2.0"
},
"devDependencies": {
"@feathersjs/authentication": "^4.3.0-pre.2",
"@feathersjs/authentication-client": "^4.3.0-pre.2",
"@feathersjs/errors": "^4.3.0-pre.2",
"@feathersjs/feathers": "^4.3.0-pre.2",
"@feathersjs/primus-client": "^4.3.0-pre.2",
"@feathersjs/rest-client": "^4.3.0-pre.2",
"@feathersjs/socketio-client": "^4.3.0-pre.2",
"@types/jest": "^24.0.13",
"@types/jsonwebtoken": "^8.3.3",
"@types/node-fetch": "^2.5.0",
"@types/socket.io-client": "^1.4.32",
"coveralls": "^3.0.3",
"jest": "^24.8.0",
"node-fetch": "^2.6.0",
"prettier": "^1.17.1",
"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.14.2",
"typescript": "^3.5.1"
}
}