package.json 724 Bytes
Newer Older
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
{
  "name": "vlq",
  "description": "Generate, and decode, base64 VLQ mappings for source maps and other uses",
  "author": "Rich Harris",
  "repository": "https://github.com/Rich-Harris/vlq",
  "license": "MIT",
  "version": "1.0.1",
  "main": "dist/vlq.js",
  "module": "dist/vlq.es.js",
  "types": "dist/types/vlq.d.ts",
  "files": [
    "README.md",
    "LICENSE",
    "dist/*.js",
    "dist/**/*.d.ts"
  ],
  "devDependencies": {
    "eslint": "^6.0.1",
    "rollup": "^1.16.4",
    "rollup-plugin-typescript": "^1.0.1",
    "typescript": "^3.5.2"
  },
  "scripts": {
    "build": "rollup -c && tsc",
    "lint": "eslint src",
    "test": "node test",
    "pretest": "npm run build",
    "prepublish": "npm test"
  }
}