forked from alexgarces/react-typeform-embed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.13 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.13 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "react-typeform-embed",
"version": "0.2.1",
"main": "./lib/index.js",
"engines": {
"node": ">=4.0.0"
},
"author": {
"name": "Alex Garces",
"email": "[email protected]",
"url": "https://alexgarces.com"
},
"files": [
"lib"
],
"license": "MIT",
"keywords": [
"components",
"react",
"react-component",
"typeform"
],
"dependencies": {
"@typeform/embed": "^0.10.0"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"homepage": "http://alexgarces.github.io/react-typeform-embed/",
"scripts": {
"start": "react-scripts start",
"build:docs": "react-scripts build",
"build:css": "cpx \"./src/components/**/*.css\" ./lib",
"build:lib": "npm run build:commonjs && npm run build:css",
"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 ./src/components --out-dir ./lib --ignore test.js",
"prepare": "npm run build:lib"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"cpx": "^1.5.0",
"cross-env": "^5.1.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.1.4",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.13.7",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"gh-pages": "^2.0.1",
"jest-cli": "^23.6.0",
"prettier": "^1.18.2",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "^2.1.8",
"react-test-renderer": "^16.8.6",
"rimraf": "^2.6.2"
},
"babel": {
"presets": [
[
"env",
{
"modules": "commonjs"
}
]
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}