package.json
1 { 2 "name": "querystring", 3 "id": "querystring", 4 "version": "0.2.0", 5 "description": "Node's querystring module for all engines.", 6 "keywords": [ "commonjs", "query", "querystring" ], 7 "author": "Irakli Gozalishvili <rfobic@gmail.com>", 8 "repository": { 9 "type": "git", 10 "url": "git://github.com/Gozala/querystring.git", 11 "web": "https://github.com/Gozala/querystring" 12 }, 13 "bugs": { 14 "url": "http://github.com/Gozala/querystring/issues/" 15 }, 16 "devDependencies": { 17 "test": "~0.x.0", 18 "phantomify": "~0.x.0", 19 "retape": "~0.x.0", 20 "tape": "~0.1.5" 21 }, 22 "engines": { 23 "node": ">=0.4.x" 24 }, 25 "scripts": { 26 "test": "npm run test-node && npm run test-browser && npm run test-tap", 27 "test-browser": "node ./node_modules/phantomify/bin/cmd.js ./test/common-index.js", 28 "test-node": "node ./test/common-index.js", 29 "test-tap": "node ./test/tap-index.js" 30 }, 31 "testling": { 32 "files": "test/tap-index.js", 33 "browsers": { 34 "iexplore": [ 35 9, 36 10 37 ], 38 "chrome": [ 39 16, 40 20, 41 25, 42 "canary" 43 ], 44 "firefox": [ 45 10, 46 15, 47 16, 48 17, 49 18, 50 "nightly" 51 ], 52 "safari": [ 53 5, 54 6 55 ], 56 "opera": [ 57 12 58 ] 59 } 60 }, 61 "licenses": [{ 62 "type" : "MIT", 63 "url" : "https://github.com/Gozala/enchain/License.md" 64 }] 65 }