Show More
Commit Description:
update new list of users
Commit Description:
update new list of users
References:
File last commit:
Show/Diff file:
Action:
node_modules/vlq/package.json
| 27 lines
| 644 B
| application/json
| JsonLexer
|
r789 | { | |||
"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": "0.2.3", | ||||
"main": "dist/vlq.js", | ||||
"module": "src/vlq.js", | ||||
"files": [ | ||||
"README.md", | ||||
"LICENSE", | ||||
"src/vlq.js", | ||||
"dist/vlq.js" | ||||
], | ||||
"devDependencies": { | ||||
"eslint": "^3.19.0", | ||||
"rollup": "^0.41.6" | ||||
}, | ||||
"scripts": { | ||||
"build": "rollup src/vlq.js -n vlq -f umd > dist/vlq.js", | ||||
"lint": "eslint src", | ||||
"test": "node test", | ||||
"pretest": "npm run build", | ||||
"prepublish": "npm test" | ||||
} | ||||
} | ||||