forked from reactjs/react-autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.74 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
{
"name": "react-autocomplete",
"version": "1.3.1",
"description": "Accessible, extensible, Autocomplete for React.js",
"main": "./build/lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/reactjs/react-autocomplete.git"
},
"homepage": "https://github.com/reactjs/react-autocomplete",
"bugs": "https://github.com/reactjs/react-autocomplete/issues",
"directories": {
"example": "examples"
},
"scripts": {
"lint": "eslint lib examples",
"pretest": "npm run lint",
"test": "jest",
"coverage": "jest --coverage",
"start": "rackt server"
},
"authors": [
"Ryan Florence <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-eslint": "6.1.2",
"babel-jest": "^13.0.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"enzyme": "^2.0.0",
"eslint": "^2.13.1",
"eslint-config-rackt": "^1.1.1",
"jest": "^13.0.0",
"rackt-cli": "^0.6.1",
"react": "^0.14.7",
"react-addons-test-utils": "^0.14.7",
"react-dom": "^0.14.7"
},
"tags": [
"react",
"autocomplete",
"combobox",
"a11y"
],
"keywords": [],
"dependencies": {
"dom-scroll-into-view": "1.0.1"
},
"peerDependencies": {
"react": "^0.14.7 || ^15.0.0-0",
"react-dom": "^0.14.7 || ^15.0.0-0"
},
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/build/",
"<rootDir>/dist/"
],
"testPathIgnorePatterns": [
"<rootDir>/build/",
"<rootDir>/dist/"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/enzyme"
]
}
}