forked from TroyAlford/react-jsx-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.79 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.79 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
{
"name": "react-jsx-parser",
"version": "1.4.0",
"description": "A React component which can parse JSX and output rendered React Components",
"main": "lib/react-jsx-parser.min.js",
"author": "Troy Alford",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:TroyAlford/react-jsx-parser.git"
},
"dependencies": {
"acorn-jsx": "^4.1.1",
"react": "^16.4.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.49",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.49",
"@babel/preset-env": "^7.0.0-beta.49",
"@babel/preset-react": "^7.0.0-beta.49",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.2.0",
"babel-loader": "^8.0.0-beta",
"cross-env": "^5.1.6",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"jest": "^23.1.0",
"jest-cli": "^23.1.0",
"mkdirp": "^0.5.1",
"prop-types": "^15.6.1",
"react-dom": "^16.4.0",
"source-map-explorer": "^1.5.0",
"webpack": "^4.10.2",
"webpack-cli": "^3.0.1"
},
"scripts": {
"build": "yarn prebuild && cross-env NODE_ENV=production webpack",
"inspect-sourcemap": "cross-env NODE_ENV=production SOURCEMAP=true webpack && source-map-explorer ./lib/react-jsx-parser.min.js",
"postversion": "git push origin HEAD && git push origin HEAD --tags",
"prebuild": "mkdirp ./lib && rm -rf ./lib/*",
"preversion": "yarn test",
"test": "jest",
"version": "yarn build && git add -A ./lib"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>setupTests.js",
"transform": {
".js$": "babel-jest"
}
}
}