package.json 893 Bytes
Newer Older
huahua committed
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
{
  "name": "url",
  "description": "The core `url` packaged standalone for use with Browserify.",
  "version": "0.11.1",
  "author": "defunctzombie",
  "dependencies": {
    "punycode": "^1.4.1",
    "qs": "^6.11.0"
  },
  "main": "./url.js",
  "keywords": [
    "parsing",
    "url",
    "analyze"
  ],
  "devDependencies": {
    "@ljharb/eslint-config": "^21.1.0",
    "acorn": "^8.8.2",
    "aud": "^2.0.2",
    "eslint": "=8.8.0",
    "mocha": "^3.5.3",
    "nyc": "^10.3.2",
    "zuul": "^3.12.0"
  },
  "scripts": {
    "lint": "eslint .",
    "pretest": "npm run lint",
    "tests-only": "nyc mocha",
    "test": "npm run tests-only",
    "posttest": "aud --production",
    "zuul": "zuul -- test/index.js",
    "test-local": "zuul --local -- test/index.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/defunctzombie/node-url.git"
  },
  "license": "MIT"
}