-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.49 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
{
"name": "react-component-viewer",
"version": "0.25.0",
"description": "React Component to help with development of other React components",
"repository": {
"type": "git",
"url": "git+https://github.com/TestingIsDocumenting/react-component-viewer.git"
},
"author": "mykolagolubyev",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/TestingIsDocumenting/react-component-viewer/issues"
},
"homepage": "https://github.com/TestingIsDocumenting/react-component-viewer#readme",
"private": false,
"main": "build/lib/components/index.js",
"types": "build/lib/components/index.d.ts",
"engines": {
"node": ">=8.0.0"
},
"files": [
"build/lib"
],
"dependencies": {
"react": "16.13.1",
"react-dom": "16.13.1"
},
"scripts": {
"start": "react-scripts-ts start",
"build": "tsc && npm run copy-css-to-lib",
"test": "react-scripts-ts test --env=jsdom --watchAll",
"copy-css-to-lib": "npm-run-all -s copy-base-css copy-component-css",
"copy-base-css": "cpx \"./src/**/*.css\" ./build/lib/",
"copy-component-css": "cpx \"./src/components/**/*.css\" ./build/lib/components"
},
"devDependencies": {
"@types/jest": "^22.1.0",
"@types/node": "^11.13.0",
"@types/react": "^16.8.10",
"@types/react-dom": "^16.8.3",
"cpx": "^1.5.0",
"npm-run-all": "^4.1.2",
"react-scripts-ts": "^4.0.8",
"typescript": "3.8"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}