-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.62 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
{
"name": "sync-query-redux",
"version": "1.0.6",
"description": "Synchronise redux state with URL query parameters.",
"main": "lib/index.js",
"scripts": {
"test": "flow && node ./scripts/test.js --env=jsdom",
"build": "npm install && rm -rf lib && npm run prepack:babel",
"prepack": "npm run build",
"prepack:babel": "babel src/ -d lib --ignore '**/*.test.js'",
"deploy": "npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teimurjan/sync-query-redux.git"
},
"keywords": [
"redux",
"sync",
"url",
"query",
"location",
"search",
"parameters"
],
"author": "teimurjan <[email protected]> (https://teimurjan.github.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/teimurjan/sync-query-redux/issues"
},
"homepage": "https://github.com/teimurjan/sync-query-redux#readme",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-flow-strip-types": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/preset-flow": "^7.0.0",
"babel-jest": "^24.8.0",
"flow-bin": "^0.111.3",
"flow-typed": "^2.6.1",
"jest": "^24.8.0"
},
"files": [
"lib"
],
"dependencies": {
"qs": "^6.7.0"
},
"jest": {
"testEnvironment": "jsdom",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js)$": "<rootDir>/node_modules/babel-jest"
},
"testMatch": [
"<rootDir>/src/**/*.test.js"
]
}
}