source: trip-planner-front/node_modules/punycode/package.json@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.2 KB
Line 
1{
2 "name": "punycode",
3 "version": "2.1.1",
4 "description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.",
5 "homepage": "https://mths.be/punycode",
6 "main": "punycode.js",
7 "jsnext:main": "punycode.es6.js",
8 "module": "punycode.es6.js",
9 "engines": {
10 "node": ">=6"
11 },
12 "keywords": [
13 "punycode",
14 "unicode",
15 "idn",
16 "idna",
17 "dns",
18 "url",
19 "domain"
20 ],
21 "license": "MIT",
22 "author": {
23 "name": "Mathias Bynens",
24 "url": "https://mathiasbynens.be/"
25 },
26 "contributors": [
27 {
28 "name": "Mathias Bynens",
29 "url": "https://mathiasbynens.be/"
30 }
31 ],
32 "repository": {
33 "type": "git",
34 "url": "https://github.com/bestiejs/punycode.js.git"
35 },
36 "bugs": "https://github.com/bestiejs/punycode.js/issues",
37 "files": [
38 "LICENSE-MIT.txt",
39 "punycode.js",
40 "punycode.es6.js"
41 ],
42 "scripts": {
43 "test": "mocha tests",
44 "prepublish": "node scripts/prepublish.js"
45 },
46 "devDependencies": {
47 "codecov": "^1.0.1",
48 "istanbul": "^0.4.1",
49 "mocha": "^2.5.3"
50 },
51 "jspm": {
52 "map": {
53 "./punycode.js": {
54 "node": "@node/punycode"
55 }
56 }
57 }
58}
Note: See TracBrowser for help on using the repository browser.