-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.06 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
{
"name": "redux-debouncer",
"version": "1.1.0",
"description": "debouncer for react navigation and redux",
"main": "lib/index.js",
"scripts": {
"test": "ava",
"build": "npx babel ./index.js -d ./lib",
"prepare": "npm run build"
},
"keywords": [
"react navigation",
"navigation debouncer",
"redux"
],
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rn-libs/redux-react-navigation-debouncer"
},
"bugs": {
"url": "https://github.com/rn-libs/redux-react-navigation-debouncer/issues"
},
"author": "Shelomanov Dmitry <[email protected]>",
"license": "ISC",
"homepage": "https://github.com/rn-libs/redux-react-navigation-debouncer#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/polyfill": "^7.2.5",
"@babel/register": "^7.0.0",
"ava": "^1.2.1",
"sinon": "^7.2.4"
},
"dependencies": {
"@babel/preset-env": "^7.3.4"
},
"ava": {
"require": [
"@babel/polyfill",
"@babel/register"
]
}
}