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
54 lines (54 loc) · 1.77 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.77 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
{
"name": "react-jsx-parser",
"version": "1.3.2",
"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.0",
"react": "^16.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.12",
"babel-preset-env": "^1.6.1",
"babel-preset-jest": "^22.0.3",
"babel-preset-react": "^6.22.0",
"cross-env": "^5.1.4",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.14.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"jest": "^22.0.4",
"jest-cli": "^22.0.4",
"mkdirp": "^0.5.1",
"prop-types": "^15.6.0",
"react-dom": "^16.2.0",
"source-map-explorer": "^1.5.0",
"webpack": "^3.10.0"
},
"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"
}
}