This repository has been archived by the owner on Aug 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
74 lines (74 loc) · 2.23 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
{
"name": "react-safe-src-doc-iframe",
"version": "1.1.0",
"description": "A component which applies guards to srcdoc iframes, providing a predictable and safe experience to the user.",
"license": "MIT",
"main": "dist/safe-src-doc-iframe.js",
"browser": "dist/safe-src-doc-iframe.js",
"module": "es/safe-src-doc-iframe.js",
"scripts": {
"lint": "eslint --fix --ext jsx --ext js src/",
"test": "npm run lint && NODE_ENV=test jest src/",
"build:dev": "BABEL_ENV=umd webpack --config webpack.dev.config.js",
"build:dist": "BABEL_ENV=umd webpack --config webpack.prod.config.js",
"build:es": "BABEL_ENV=es babel src --out-dir es --source-maps inline",
"build-all": "npm run build:dev && npm run build:dist && npm run build:es",
"prepublishOnly": "npm run build-all"
},
"files": [
"src",
"dist",
"es"
],
"repository": {
"type": "git",
"url": "https://github.com/godaddy/react-safe-src-doc-iframe.git"
},
"keywords": [
"react",
"react component",
"component",
"iframe",
"safety",
"safe guards",
"srcdoc",
"library"
],
"author": "GoDaddy Operating Company, LLC",
"contributors": [
"Mayank Jethva <mjethva@godaddy.com>",
"Srinath Ganesan <srinathganesan.93@gmail.com>",
"Brandon Kidd <bkidd@godaddy.com>"
],
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>setup-tests.js"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^5.1.0",
"eslint-config-godaddy-react": "^2.2.1",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-mocha": "^5.1.0",
"eslint-plugin-react": "^7.10.0",
"jest": "^23.4.1",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"webpack": "^4.16.1",
"webpack-cli": "^3.0.8"
},
"peerDependencies": {
"prop-types": "^15.0.0",
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
}
}