forked from alancting/react-cas-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.46 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": "react-cas-client",
"version": "1.0.4",
"description": "Simple CAS Client for CAS 2.0 and 3.0 protocol",
"author": "alancting",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/alancting/react-cas-client.git"
},
"bugs": {
"url": "https://github.com/alancting/react-cas-client/issues"
},
"homepage": "https://github.com/alancting/react-cas-client#readme",
"main": "lib/index.js",
"scripts": {
"pre-publish": "npm run lint && npm run clean && npm run build",
"test": "jest",
"lint": "eslint src/ test/",
"clean": "rm -rf build",
"build": "babel src --out-dir lib",
"coveralls": "jest --coverage && cat coverage/lcov.info | coveralls"
},
"dependencies": {
"build-url": "^6.0.1",
"node-fetch": "^2.6.1",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.0",
"eslint": "^7.9.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"jest": "^26.4.2"
},
"jest": {
"testURL": "https://mock.testing.com"
},
"keywords": [
"react",
"apereo",
"cas",
"cas-client",
"react-cas-client"
]
}