blob: bdcd6ae13d63df19056385768a6bca148237259c [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001{
2 name: "source-map-url",
3 version: "0.4.0",
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 overlay: {
15 npm: {
16 repository: "lydell/source-map-url",
17 scripts: {
18 lint: "jshint source-map-url.js test/ ",
19 unit: "mocha",
20 test: "npm run lint && npm run unit"
21 },
22 devDependencies: {
23 "mocha": "~1.17.1",
24 "expect.js": "~0.3.1",
25 "jshint": "~2.4.3"
26 },
27 testling: {
28 harness: "mocha",
29 files: "test/*.js",
30 browsers: [
31 "ie/8..latest",
32 "chrome/latest",
33 "firefox/latest",
34 "opera/12",
35 "opera/latest",
36 "safari/5",
37 "iphone/6",
38 "android-browser/4"
39 ]
40 }
41 },
42 component: {
43 repo: "lydell/source-map-url",
44 scripts: [
45 "source-map-url.js"
46 ]
47 },
48 bower: {
49 authors: ["Simon Lydell"],
50 ignore: [
51 ".*"
52 ]
53 }
54 }
55}