package.json
1 { 2 "name": "source-map-url", 3 "version": "0.4.1", 4 "author": "Simon Lydell", 5 "license": "MIT", 6 "description": "Tools for working with sourceMappingURL comments.", 7 "keywords": [ 8 "source map", 9 "sourceMappingURL", 10 "comment", 11 "annotation" 12 ], 13 "main": "source-map-url.js", 14 "repository": "lydell/source-map-url", 15 "scripts": { 16 "lint": "jshint source-map-url.js test/ ", 17 "unit": "mocha", 18 "test": "npm run lint && npm run unit" 19 }, 20 "devDependencies": { 21 "mocha": "~1.17.1", 22 "expect.js": "~0.3.1", 23 "jshint": "~2.4.3" 24 }, 25 "testling": { 26 "harness": "mocha", 27 "files": "test/*.js", 28 "browsers": [ 29 "ie/8..latest", 30 "chrome/latest", 31 "firefox/latest", 32 "opera/12", 33 "opera/latest", 34 "safari/5", 35 "iphone/6", 36 "android-browser/4" 37 ] 38 } 39 }