forked from kentcdodds/react-toggled
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.27 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
{
"name": "react-toggled",
"version": "0.0.0-semantically-released",
"description": "Component to build simple, flexible, and accessible toggle components.",
"main": "dist/react-toggled.cjs.js",
"jsnext:main": "dist/react-toggled.esm.js",
"module": "dist/react-toggled.esm.js",
"typings": "typings/index.d.ts",
"scripts": {
"add-contributor": "kcd-scripts contributors add",
"build": "kcd-scripts build --bundle --p-react",
"lint": "kcd-scripts lint",
"test": "kcd-scripts test",
"test:cover": "kcd-scripts test --coverage",
"test:ts": "tsc --noEmit -p ./tsconfig.json",
"test:update": "npm run test:cover -s -- --updateSnapshot",
"test:build": "kcd-scripts test --config other/misc-tests/jest.config.js --no-watch",
"build-and-test": "npm run build -s && npm run test:build -s",
"storybook": "start-storybook -p 6006 -c stories",
"storybook:build": "cd stories && npm install && cd .. && build-storybook -c stories",
"validate": "kcd-scripts validate lint,build-and-test,test:cover,test:ts",
"precommit": "kcd-scripts precommit"
},
"files": [
"dist",
"typings",
"preact"
],
"keywords": [
"toggle",
"react",
"accessibility",
"WAI-ARIA"
],
"author": "Kent C. Dodds <[email protected]> (http://kentcdodds.com/)",
"license": "MIT",
"peerDependencies": {
"react": ">=15",
"prop-types": ">=15"
},
"devDependencies": {
"@storybook/react": "^3.2.3",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"enzyme-to-json": "^3.1.2",
"jest-serializer-html": "^4.0.0",
"kcd-scripts": "^0.39.1",
"preact": "^8.2.1",
"preact-render-to-string": "^3.6.3",
"prop-types": "^15.5.10",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"typescript": "^2.6.2"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js"
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist",
"storybook-static",
"typings"
],
"repository": {
"type": "git",
"url": "https://github.com/kentcdodds/react-toggled.git"
},
"bugs": {
"url": "https://github.com/kentcdodds/react-toggled/issues"
},
"homepage": "https://github.com/kentcdodds/react-toggled#readme",
"dependencies": {}
}