-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.07 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "string-to-react",
"version": "1.0.2",
"description": "convert string to react component",
"main": "dist/string-to-react.js",
"typings": "dist/string-to-react.d.ts",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --config build/webpack.dev.js --progress",
"test": "cross-env NODE_ENV=test jest --config jest.config.js",
"test-coverage": "jest --coverage",
"build-clean": "rm -rf dist/",
"build-dist-dev": "cross-env NODE_ENV=development webpack --config build/webpack.dist.js --progress",
"build-dist": "cross-env NODE_ENV=production webpack --config build/webpack.dist.js --progress",
"build-cp-ts": "cp string-to-react.d.ts dist/",
"build": "npm-run-all build-*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PorUnaCabeza/string-to-react.git"
},
"keywords": [
"react",
"converter",
"parser",
"html"
],
"author": "PorUnaCabeza",
"license": "MIT",
"bugs": {
"url": "https://github.com/PorUnaCabeza/string-to-react/issues"
},
"homepage": "https://github.com/PorUnaCabeza/string-to-react#readme",
"peerDependencies": {
"react": ">=16.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.11",
"@types/react": "^16.8.13",
"@types/react-dom": "^16.8.3",
"acorn": "^6.1.1",
"acorn-jsx": "^5.0.1",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^2.0.1",
"coveralls": "^3.0.3",
"cross-env": "^5.2.0",
"html-webpack-plugin": "^3.2.0",
"istanbul": "^0.4.5",
"jest": "^24.7.1",
"mocha": "^6.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"source-map-loader": "^0.2.4",
"terser-webpack-plugin": "^1.2.3",
"ts-jest": "^24.0.2",
"ts-loader": "^5.3.3",
"typescript": "^3.4.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^4.2.1"
}
}