forked from opencampus-xyz/ocid-connect-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.26 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
78
79
80
81
82
83
84
85
{
"name": "@opencampus/ocid-connect-js",
"version": "1.2.3",
"author": "Animoca Brands",
"license": "MIT",
"description": "OCID Connector Library",
"main": "./lib",
"files": [
"dist",
"lib"
],
"scripts": {
"build-dev": "gulp clean && gulp copy && webpack",
"lib": "babel ./src --out-dir ./lib",
"build": "NODE_OPTIONS=--openssl-legacy-provider npm run lib && NODE_OPTIONS=--openssl-legacy-provider gulp dist",
"prepublishOnly": "npm run build",
"lint": "eslint src",
"precommit": "lint-staged"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.3.0",
"autoprefixer": "^7.1.2",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.4",
"babel-preset-airbnb": "^2.1.1",
"css-loader": "^2.1.1",
"deepmerge": "^1.1.0",
"del": "^2.2.2",
"es5-shim": "^4.5.9",
"eslint": "^8.4.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-react": "^7.27.1",
"gulp": "^4.0.0",
"js-beautify": "^1.7.5",
"json-loader": "^0.5.4",
"lint-staged": "^12.1.2",
"opn": "^5.4.0",
"postcss-loader": "^1.3.3",
"prettier": "^1.14.3",
"raf": "^3.4.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"sinon": "^2.1.0",
"style-loader": "^0.16.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.21.0",
"webpack-cli": "^3.1.2",
"regenerator-runtime": "^0.14.1"
},
"dependencies": {
"tiny-emitter": "^2.1.0",
"js-cookie": "^3.0.5"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.1 || ^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^0.14.0 || ^15.0.1 || ^16.0.0 || ^17.0.0 || ^18.0.0"
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/opencampus-xyz/ocid-connect-js.git"
},
"npmName": "@opencampus/ocid-connect-js",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}