-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 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
62
63
64
65
{
"name": "query-fns",
"version": "0.0.1",
"description": "Parse and stringify URL search params.",
"main": "index.js",
"repository": "https://github.com/filipstefansson/query-fns",
"author": "Filip Stefansson",
"license": "MIT",
"scripts": {
"start": "jest --watch",
"build": "webpack --mode production",
"test": "jest",
"test-ci": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"lint": "eslint --ignore-path .gitignore ."
},
"browserslist": [
"> 1%",
"last 3 versions"
],
"keywords": [
"encode",
"decode",
"jsonapi",
"param",
"parameter",
"parse",
"qs",
"querystring",
"query-string",
"query",
"react-router",
"search-params",
"query-fns",
"search",
"string",
"stringify",
"url",
"uri"
],
"devDependencies": {
"@babel/core": "^7.0.0-beta.40",
"@babel/preset-env": "^7.0.0-beta.40",
"@babel/preset-flow": "^7.0.0-beta.40",
"babel-core": "^7.0.0-0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.1",
"babel-loader": "8.0.0-beta.0",
"babel-preset-flow": "^6.23.0",
"copy-webpack-plugin": "^4.5.1",
"coveralls": "^3.0.0",
"eslint": "^4.18.2",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-compat": "^2.2.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-flowtype-errors": "^3.5.1",
"eslint-plugin-prettier": "^2.6.0",
"flow-bin": "^0.66.0",
"jest": "^22.4.2",
"prettier": "^1.11.1",
"regenerator-runtime": "^0.11.1",
"webpack": "^4.0.1",
"webpack-cli": "^2.0.10"
},
"dependencies": {}
}