forked from aaronshaf/react-toggle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.8 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.8 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
{
"name": "@inkarnaterpg/react-toggle",
"version": "5.0.1",
"description": "An elegant, accessible toggle component for React. Also a glorified checkbox.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"style": "dist/style.css",
"files": ["dist"],
"scripts": {
"build": "rimraf dist && rollup -c && copyfiles types/index.d.ts style.css dist -f",
"test": "nyc mocha --require ./spec/register.js --require spec/setup.js spec/**/*.spec.js",
"lint": "eslint .; exit 0"
},
"keywords": [
"toggle",
"component",
"react",
"react-component"
],
"contributors": ["Aaron Shafovaloff <aaronshaf@gmail.com>"],
"homepage": "https://github.com/inkarnaterpg/react-toggle",
"repository": {
"type": "git",
"url": "git@github.com:inkarnaterpg/react-toggle.git"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-react": "^7.24.0",
"@babel/register": "^7.24.0",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.5.2",
"enzyme": "^2.4.1",
"eslint": "^3.7.1",
"eslint-config-standard": "^6.2.0",
"eslint-config-standard-react": "^4.2.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-react": "^6.3.0",
"eslint-plugin-standard": "^2.0.1",
"jsdom": "^9.6.0",
"mocha": "^3.1.2",
"nyc": "^11.0.2",
"prop-types": "^15.3.0",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"copyfiles": "^2.4.0",
"rimraf": "^6.0.0",
"rollup": "^4.0.0"
},
"dependencies": {
"classnames": "^2.2.5"
},
"peerDependencies": {
"prop-types": ">= 15.3.0 < 19",
"react": ">= 15.3.0 < 19",
"react-dom": ">= 15.3.0 < 19"
}
}