forked from downshift-js/downshift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.65 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "downshift",
"version": "0.0.0-semantically-released",
"description": "A set of primitives to build simple, flexible, WAI-ARIA compliant React autocomplete components",
"main": "dist/downshift.cjs.js",
"jsnext:main": "dist/downshift.esm.js",
"react-native": "dist/downshift.native.cjs.js",
"module": "dist/downshift.esm.js",
"typings": "typings/index.d.ts",
"scripts": {
"add-contributor": "kcd-scripts contributors add",
"build": "npm run build:web --silent && npm run build:native --silent -- --no-clean",
"build:web": "kcd-scripts build --bundle --p-react",
"build:native": "cross-env BUILD_REACT_NATIVE=true BUILD_FILENAME_SUFFIX=.native kcd-scripts build --bundle cjs",
"lint": "kcd-scripts lint",
"test": "kcd-scripts test",
"test:cover": "kcd-scripts test --coverage",
"test:ssr": "kcd-scripts test --config other/ssr/jest.config.js --no-watch",
"test:update": "npm run test:cover -s -- --updateSnapshot",
"test:ts": "echo \"currently disabled because it's busted: tsc --noEmit -p ./tsconfig.json\"",
"test:build": "jest --projects other/misc-tests other/react-native",
"test:cypress:dev": "npm-run-all --parallel --race storybook cy:open",
"pretest:cypress": "npm run storybook:build --silent",
"test:cypress": "npm-run-all --parallel --race storybook:serve cy:run",
"cy:run": "cypress run",
"cy:open": "cypress open",
"build-and-test": "npm run build -s && npm run test:build -s",
"storybook": "start-storybook -p 6006 -c stories",
"storybook:build": "build-storybook -c stories",
"storybook:install": "cd stories && npm install",
"storybook:serve": "serve ./storybook-static -p 6006",
"setup": "npm install && npm run storybook:install -s && npm run storybook:build -s && npm run validate",
"validate": "kcd-scripts validate lint,build-and-test,test:cover,test:ts,test:ssr,test:cypress",
"precommit": "kcd-scripts precommit"
},
"files": [
"dist",
"typings",
"preact"
],
"keywords": [
"enhanced input",
"react",
"autocomplete",
"autosuggest",
"typeahead",
"dropdown",
"select",
"combobox",
"omnibox",
"accessibility",
"WAI-ARIA",
"multiselect",
"multiple selection"
],
"author": "Kent C. Dodds <[email protected]> (http://kentcdodds.com/)",
"license": "MIT",
"peerDependencies": {
"prop-types": ">=15",
"react": ">=0.14.x"
},
"devDependencies": {
"@storybook/react": "^3.3.15",
"babel-jest": "^22.2.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react-native": "^4.0.0",
"cross-env": "^5.1.4",
"cypress": "^2.1.0",
"eslint-plugin-cypress": "^2.0.1",
"kcd-scripts": "^0.37.0",
"npm-run-all": "^4.1.2",
"preact": "^8.2.6",
"preact-render-to-string": "^3.7.0",
"preval.macro": "^1.0.2",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-native": "^0.54.2",
"react-test-renderer": "^16.3.2",
"react-testing-library": "^2.3.0",
"serve": "^6.5.3",
"typescript": "^2.7.2"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js",
"rules": {
"max-lines": "off",
"no-eq-null": "off",
"eqeqeq": "off",
"react/jsx-indent": "off",
"complexity": [
"error",
12
]
}
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist",
"storybook-static",
"typings"
],
"repository": {
"type": "git",
"url": "https://github.com/paypal/downshift.git"
},
"bugs": {
"url": "https://github.com/paypal/downshift/issues"
},
"homepage": "https://github.com/paypal/downshift#readme",
"dependencies": {}
}