This repository has been archived by the owner on Jan 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
92 lines (92 loc) · 2.28 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "create-react-web-component",
"version": "2.0.17",
"description": "Set up a React App wrapped in a Web Component",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "jest --env=jest-environment-jsdom-fourteen",
"install-peer-deps": "node scripts/install-peer-deps.js",
"update-version": "node scripts/update-version.js",
"cleanup": "node scripts/cleanup.js",
"build-link": "node scripts/build-link.js"
},
"bin": {
"create-react-web-component": "bin/create-react-web-component"
},
"publishConfig": {
"access": "public"
},
"files": [
"bin/*",
"dist/*",
"templates/*",
"config/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Silind-Software/create-react-web-component.git"
},
"keywords": [
"react",
"web-component",
"typescript"
],
"author": "Silind Software <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Silind-Software/create-react-web-component/issues"
},
"homepage": "https://github.com/Silind-Software/create-react-web-component#readme",
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/**/*.test.(ts|tsx)"
],
"testPathIgnorePatterns": [
"<rootDir>/template"
],
"collectCoverage": true
},
"dependencies": {
"@svgr/webpack": "4.3.2",
"@types/inquirer": "^6.5.0",
"@types/mkdirp": "^0.5.2",
"@types/ncp": "^2.0.1",
"@types/react": "16.9.3",
"@types/rimraf": "^2.0.2",
"@webcomponents/webcomponentsjs": "^2.3.0",
"boxen": "^4.1.0",
"chalk": "^2.4.2",
"deepmerge": "^4.0.0",
"esm": "^3.2.25",
"event-hooks-webpack-plugin": "^2.1.4",
"inquirer": "^6.5.0",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"react-shadow": "^17.1.3",
"rimraf": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/node": "^12.0.12",
"jest": "^24.8.0",
"jest-environment-jsdom-fourteen": "^0.1.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.2"
},
"peerDependencies": {
"@types/react": "16.9.3",
"@types/react-dom": "16.9.1",
"react": "16.10.1",
"react-dom": "16.10.1",
"style-it": "2.1.4"
}
}