| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {
- "name": "js-query-string",
- "version": "1.0.2",
- "description": "Prepare native JS objects to be used in URL queries",
- "keywords": [
- "js",
- "query",
- "string",
- "url",
- "parameters",
- "request",
- "get",
- "convert"
- ],
- "main": "lib/index.js",
- "scripts": {
- "build": "babel src -d lib && jshint lib/index.js && uglifyjs lib/index.js > lib/index.min.js",
- "pretest": "npm run build",
- "test": "istanbul cover jasmine-runner.js"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/Alpha-Atom/js-query-string.git"
- },
- "author": "Matt Coles",
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/Alpha-Atom/js-query-string/issues"
- },
- "homepage": "https://github.com/Alpha-Atom/js-query-string#readme",
- "devDependencies": {
- "babel-cli": "^6.7.5",
- "babel-preset-es2015": "^6.6.0",
- "coveralls": "^2.11.9",
- "istanbul": "^0.4.3",
- "jasmine": "^2.4.1",
- "jasmine-spec-reporter": "^2.4.0",
- "jshint": "^2.9.1",
- "uglify-js": "^2.6.2"
- }
- }
|