This repository was archived by the owner on Aug 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.96 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.96 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
66
67
68
69
70
71
72
{
"name": "gluestick-okta-authentication",
"version": "0.0.1",
"description": "A simple wrapper to provide Okta authentication",
"main": "./build/index",
"scripts": {
"test": "jest",
"test-coverage": "jest --coverage",
"clean": "rimraf build",
"build": "./node_modules/.bin/babel src --out-dir build",
"prepublish": "npm run clean && npm run build",
"lint": "./node_modules/.bin/eslint src test"
},
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TrueCar/gluestick-okta-authentication.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/TrueCar/gluestick-okta-authentication/issues"
},
"homepage": "https://github.com/TrueCar/gluestick-okta-authentication#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "7.1.0",
"babel-polyfill": "6.16.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-0": "6.16.0",
"babel-register": "6.18.0",
"babel-runtime": "6.18.0",
"enzyme": "2.5.1",
"eslint": "3.8.1",
"eslint-plugin-react": "6.4.1",
"flow-bin": "^0.33.0",
"jest": "^19.0.2",
"react": "15.4.0",
"react-addons-test-utils": "^15.3.2",
"react-broadcast": "^0.1.2",
"react-dom": "15.4.0",
"react-hot-loader": "^1.3.1",
"react-launch-darkly": "0.0.10",
"react-redux": "^5.0.3",
"react-test-renderer": "^15.5.4",
"redux": "^3.6.0",
"redux-mock-store": "^1.2.3",
"redux-thunk": "^2.2.0",
"rimraf": "^2.5.4",
"seamless-immutable": "^7.1.1"
},
"dependencies": {
"react-launch-darkly": ">=0.0.11",
"seamless-immutable": ">=7.1.1"
},
"peerDependencies": {
"gluestick": ">=1.0.0",
"react": ">=15.0.0",
"react-dom": ">=15.0.0",
"react-redux": "^5.0.3",
"redux": "^3.6.0"
},
"jest": {
"unmockedModulePathPatterns": [
"node_modules/react/",
"node_modules/enzyme/"
]
}
}