-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.19 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.19 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
{
"name": "react-checkbox-switch",
"version": "1.0.2",
"description": "A simple switch checkbox",
"main": "build/index.js",
"module": "build/index.es.js",
"scripts": {
"build": "rollup -c",
"test": "jest"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"moduleNameMapper": {
"\\.(css|less|scss|sass)$": "identity-obj-proxy"
},
"verbose": true,
"collectCoverage": true
},
"types": "index.d.ts",
"author": "Em Poulter",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@types/jest": "^26.0.3",
"@types/node": "^14.0.14",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.1.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^2.19.0",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-postcss": "^3.1.2",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"sass": "^1.26.9",
"ts-jest": "^26.1.1",
"typescript": "^3.9.6"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}