-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.57 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
{
"name": "genesys-react-components",
"version": "1.0.6",
"description": "A React component library containing standardized form elements.",
"type": "module",
"types": "build/index.d.ts",
"main": "./build/index.js",
"exports": {
"require": "./src/index.ts",
"default": "./build/index.js"
},
"files": [
"build",
"src"
],
"scripts": {
"build": "rm -rf build && rollup -c rollup.config.js",
"localbuild": "npm i && npm run build && rm -rf node_modules",
"test": "echo \"0/0 tests passed. That's technically a perfect score. Keep up the great work!\""
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/purecloudlabs/genesys-react-components.git"
},
"author": "Genesys",
"license": "MIT",
"bugs": {
"url": "https://github.com/purecloudlabs/genesys-react-components/issues"
},
"homepage": "https://purecloudlabs.github.io/genesys-react-components",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@types/react": "^16",
"react": "^16",
"react-dom": "^16",
"rollup": "^2.60.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.31.1",
"sass": "^1.44.0",
"typescript": "^4.5.2",
"uuid": "^9.0.0"
},
"peerDependencies": {
"genesys-dev-icons": "^1.5.0",
"moment": "^2.30.1",
"postcss": "^8.5.3",
"react": ">=16",
"react-dom": ">=16",
"react-syntax-highlighter": "^15.5.0",
"uuid": "^9.0.0"
},
"dependencies": {
"moment": "^2.30.1",
"postcss": "^8.5.3",
"react-syntax-highlighter": "^15.6.1"
}
}