-
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.58 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.58 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-tile-switcher",
"version": "2.0.5",
"description": "Size-flexible tile switcher built on React and styled-components",
"main": "dist/cjs/index.js",
"author": "Javier Baccarelli",
"license": "MIT",
"private": false,
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.1",
"@types/react": "^17.0.41",
"@types/styled-components": "^5.1.24",
"babel-jest": "^27.5.1",
"jest": "^27.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.70.1",
"rollup-plugin-dts": "^4.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"styled-components": "^5.3.3",
"tslib": "^2.3.1",
"typescript": "^4.6.2"
},
"module": "dist/esm/index.js",
"files": [
"dist",
"package.json",
"CHANGELOG.md"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c --watch",
"test": "jest --config jest.config.js",
"test:watch": "jest --config jest.config.js --watch",
"coverage": "jest --coverage --watchAll=false"
}
}