-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
61 lines (61 loc) · 1.75 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
{
"name": "react-jotform-embed",
"version": "1.1.3",
"description": "A rewrite for React of the embedded iframe provided by JotForm",
"main": "lib/cjs/react-jotform-embed.js",
"module": "lib/module/react-jotform-embed.js",
"sideEffects": false,
"files": [
"lib"
],
"scripts": {
"test": "echo 'no test specified'",
"pretest": "node_modules/.bin/eslint .",
"preversion": "npm test",
"build": "rimraf lib/* && npm run build:module && npm run build:cjs",
"build:module": "BABEL_ENV=module node_modules/.bin/babel src -d lib/module",
"build:cjs": "node_modules/.bin/babel src -d lib/cjs",
"prepublishOnly": "npm run build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"keywords": [
"react",
"jotform",
"resize"
],
"author": "Olivier Bourdoux",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/xurei/react-jotform-embed.git"
},
"peerDependencies": {
"react": ">= 15.0.0",
"react-dom": ">= 15.0.0",
"prop-types": ">= 15.0.0"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@storybook/react": "^6.0.26",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"eslint": "^7.0.0",
"eslint-config-xurei": "^1.1.1",
"eslint-plugin-jsx": "0.1.0",
"eslint-plugin-promise": "^4.2.0",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-react-native": "^3.5.0",
"eslint-plugin-security": "^1.4.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"rimraf": "^3.0.2"
},
"dependencies": {
"core-js": "^3.0.0"
}
}