-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.3 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
{
"name": "sso-broker-client",
"version": "1.0.0",
"description": "Client-side implementation of SSO Broker entity",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/jasmine-node spec",
"dev": "./node_modules/.bin/webpack --config webpack.config.js --env dev",
"build": "./node_modules/.bin/webpack --config webpack.config.js --env prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Minstel/sso-broker-client.git"
},
"keywords": [
"sso",
"broker",
"client"
],
"contributors": [
{
"name": "Sergey Boltonosov",
"email": "[email protected]",
"url": "https://github.com/Minstel"
},
{
"name": "Arnold Daniels",
"email": "[email protected]",
"url": "https://github.com/jasny"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/Minstel/sso-broker-client/issues"
},
"homepage": "https://github.com/Minstel/sso-broker-client#readme",
"dependencies": {
"baseconvert": "^1.0.0",
"extend": "^3.0.2",
"js-sha256": "^0.9.0",
"md5": "^2.2.1",
"query-string": "^6.2.0",
"random-js": "^1.0.8",
"uniqid": "^5.0.3",
"xhr": "^2.5.0"
},
"devDependencies": {
"jasmine-node": "^1.16.2",
"webpack": "^4.23.0",
"webpack-cli": "^3.1.2"
}
}