-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.51 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.51 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
{
"name": "ban-autocomplete-react",
"version": "0.0.1-alpha1",
"description": "Autocomplete address widget that uses the French BAN database.",
"main": "src/AutocompleteBan.jsx",
"dependencies": {
"es6-promise": "3.1.2",
"isomorphic-fetch": "2.2.1",
"react": "15.0.1",
"react-dom": "15.0.1"
},
"devDependencies": {
"babel-core": "6.7.6",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-jest": "11.0.2",
"coveralls": "2.11.9",
"jest": "0.1.40",
"jest-cli": "11.0.2",
"react-addons-test-utils": "15.0.1",
"selenium-server": "2.53.0"
},
"scripts": {
"test-watch": "jest --watch",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ThibautGery/ban-autocomplete-react.git"
},
"keywords": [
"addresses",
"ban",
"autocomplete"
],
"author": "thibaut.gery@gmail.com",
"contributors": [
{
"name": "Colin Maudry",
"email": "colin@maudry.com",
"url": "http://colin.maudry.com"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/ThibautGery/ban-autocomplete-react/issues"
},
"jest": {
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/es6-promise",
"<rootDir>/node_modules/isomorphic-fetch"
]
},
"homepage": "https://github.com/ThibautGery/ban-autocomplete-react#readme"
}