-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.05 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": "paramo",
"version": "1.16.3",
"description": "🌵Swiss-army knife of stringifying, parsing and manipulating URL parameters by applying types to the parameters.",
"main": "dist/paramo.cjs.js",
"module": "dist/paramo.esm.js",
"repository": "[email protected]:Wildhoney/Paramo.git",
"author": "Adam Timberlake <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"test": "yarn lint && yarn spec",
"spec": "ava",
"coverage": "nyc ava && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint '**/**.js'",
"format": "prettier --write '**/**.{js,html,md}'"
},
"nyc": {
"all": true,
"include": [
"src/**/*.js"
],
"exclude": [
"tests/**/*.js"
]
},
"devDependencies": {
"@babel/plugin-proposal-export-namespace-from": "^7.10.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-private-methods": "^7.10.4",
"@babel/plugin-syntax-bigint": "^7.8.3",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/register": "^7.10.5",
"ava": "^3.10.1",
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-ava": "^10.4.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mockdate": "^3.0.2",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"rollup": "^2.22.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^6.1.0"
},
"dependencies": {
"humps": "^2.0.1",
"moment": "^2.27.0",
"query-string": "^6.13.1",
"ramda": "^0.27.0"
}
}