This repository has been archived by the owner on Jan 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.85 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": "@gumgum/react-script-tag",
"author": "Jose Santos <jose@gumgum.com>",
"version": "0.0.3",
"description": "A React replacement for the native script tag",
"license": "MIT",
"main": "dist/react-script-tag.js",
"umd:main": "dist/react-script-tag.umd.js",
"module": "dist/react-script-tag.m.js",
"source": "src/index.js",
"sideEffects": false,
"scripts": {
"build": "NODE_ENV=production rollup -c",
"start": "rollup -c -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gumgum/react-script-tag.git"
},
"keywords": [
"react",
"component"
],
"peerDependencies": {
"react": ">=16"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.54",
"@babel/core": "^7.0.0-beta.54",
"@babel/plugin-transform-modules-commonjs": "^7.0.0-beta.54",
"@babel/plugin-transform-react-constant-elements": "^7.0.0-beta.54",
"@babel/preset-env": "^7.0.0-beta.54",
"@babel/preset-react": "^7.0.0-beta.54",
"@babel/preset-stage-1": "^7.0.0-beta.54",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"babel-preset-minify": "^0.4.3",
"eslint": "^5.1.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"jest": "^23.4.1",
"prettier": "^1.13.7",
"pretty-quick": "^1.6.0",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"rollup": "^0.63.2",
"rollup-plugin-babel": "^4.0.0-beta.7",
"rollup-plugin-babel-minify": "^5.0.0",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-filesize": "^2.0.0",
"rollup-plugin-local-resolve": "^1.0.7",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^1.6.2",
"rollup-plugin-replace": "^2.0.0"
}
}