|
1 | 1 | { |
2 | 2 | "name": "postman-url-encoder", |
3 | | - "description": "Implementation of the WHATWG URL Standard", |
4 | | - "author": "Postman Labs <help@getpostman.com>", |
5 | 3 | "version": "2.1.3", |
| 4 | + "description": "Implementation of the WHATWG URL Standard", |
| 5 | + "author": "Postman Inc.", |
6 | 6 | "license": "Apache-2.0", |
| 7 | + "main": "index.js", |
| 8 | + "homepage": "https://github.com/postmanlabs/postman-url-encoder#readme", |
| 9 | + "bugs": { |
| 10 | + "url": "https://github.com/postmanlabs/postman-url-encoder/issues", |
| 11 | + "email": "help@postman.com" |
| 12 | + }, |
| 13 | + "repository": { |
| 14 | + "type": "git", |
| 15 | + "url": "git+https://github.com/postmanlabs/postman-url-encoder.git" |
| 16 | + }, |
7 | 17 | "keywords": [ |
8 | 18 | "postman", |
9 | 19 | "url-encoder", |
| 20 | + "url-parser", |
10 | 21 | "whatwg-url" |
11 | 22 | ], |
12 | | - "repository": { |
13 | | - "type": "git", |
14 | | - "url": "git+https://github.com/postmanlabs/postman-url-encoder.git" |
15 | | - }, |
16 | | - "bugs": { |
17 | | - "url": "https://github.com/postmanlabs/postman-url-encoder/issues" |
18 | | - }, |
19 | | - "homepage": "https://github.com/postmanlabs/postman-url-encoder#readme", |
20 | | - "main": "index.js", |
21 | 23 | "scripts": { |
22 | 24 | "build-docs": "node npm/build-docs.js", |
23 | | - "publish-docs": "node npm/publish-docs.js", |
24 | 25 | "test": "npm run test-lint && npm run test-unit", |
| 26 | + "test-benchmark": "node npm/test-benchmark.js", |
25 | 27 | "test-lint": "node npm/test-lint.js", |
26 | | - "test-unit": "nyc --nycrc-path=.nycrc.js node npm/test-unit.js", |
27 | 28 | "test-system": "node npm/test-system.js", |
28 | | - "test-benchmark": "node npm/test-benchmark.js" |
| 29 | + "test-unit": "nyc --nycrc-path=.nycrc.js node npm/test-unit.js" |
29 | 30 | }, |
30 | 31 | "dependencies": { |
31 | 32 | "punycode": "^2.1.1" |
|
51 | 52 | "postman-jsdoc-theme": "^0.0.3", |
52 | 53 | "recursive-readdir": "^2.2.2", |
53 | 54 | "shelljs": "^0.8.3" |
| 55 | + }, |
| 56 | + "engines": { |
| 57 | + "node": ">=10" |
54 | 58 | } |
55 | 59 | } |
0 commit comments