This repository has been archived by the owner on Sep 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
79 lines (79 loc) · 2.15 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
{
"name": "react-typeform-embed",
"version": "1.0.8",
"main": "./lib/index.js",
"engines": {
"node": ">=4.0.0"
},
"author": {
"name": "Alex Garces",
"email": "[email protected]",
"url": "https://twitter.com/alexgrcs"
},
"files": [
"lib"
],
"license": "MIT",
"keywords": [
"components",
"react",
"react-component",
"typeform"
],
"dependencies": {
"@typeform/embed": "^1.28.2"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"homepage": "http://alexgarces.github.io/react-typeform-embed/",
"scripts": {
"start": "react-scripts start",
"build:docs": "react-scripts build",
"build:lib": "npm run build:commonjs",
"test": "react-scripts test --env=jsdom",
"lint": "eslint . --ext .js",
"eject": "react-scripts eject",
"predeploy:docs": "npm run build:docs",
"deploy:docs": "gh-pages -d build",
"build:commonjs": "cross-env NODE_ENV=production babel --plugins @babel/plugin-transform-modules-commonjs ./src/components --out-dir ./lib --ignore test.js",
"prepare": "npm run build:lib"
},
"devDependencies": {
"@babel/cli": "^7.17.0",
"@babel/core": "^7.17.2",
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.6",
"cross-env": "^7.0.3",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"gh-pages": "^3.2.3",
"jest-cli": "^27.5.1",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "^5.0.0",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"repository": {
"type": "git",
"url": "[email protected]:https://github.com/alexgarces/react-typeform-embed"
}
}