source: frontend/node_modules/encodeurl/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 1.1 KB
Line 
1{
2 "name": "encodeurl",
3 "description": "Encode a URL to a percent-encoded form, excluding already-encoded sequences",
4 "version": "2.0.0",
5 "contributors": [
6 "Douglas Christopher Wilson <doug@somethingdoug.com>"
7 ],
8 "license": "MIT",
9 "keywords": [
10 "encode",
11 "encodeurl",
12 "url"
13 ],
14 "repository": "pillarjs/encodeurl",
15 "devDependencies": {
16 "eslint": "5.11.1",
17 "eslint-config-standard": "12.0.0",
18 "eslint-plugin-import": "2.14.0",
19 "eslint-plugin-node": "7.0.1",
20 "eslint-plugin-promise": "4.0.1",
21 "eslint-plugin-standard": "4.0.0",
22 "istanbul": "0.4.5",
23 "mocha": "2.5.3"
24 },
25 "files": [
26 "LICENSE",
27 "HISTORY.md",
28 "README.md",
29 "index.js"
30 ],
31 "engines": {
32 "node": ">= 0.8"
33 },
34 "scripts": {
35 "lint": "eslint .",
36 "test": "mocha --reporter spec --bail --check-leaks test/",
37 "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
38 "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
39 }
40}
Note: See TracBrowser for help on using the repository browser.