package.json
1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "inline-source-map",
"version": "0.6.2",
"description": "Adds source mappings and base64 encodes them, so they can be inlined in your generated file.",
"main": "index.js",
"scripts": {
"test-main": "tap test/*.js",
"test-0.8": "nave use 0.8 npm run test-main",
"test-0.10": "nave use 0.10 npm run test-main",
"test-0.12": "nave use 0.12 npm run test-main",
"test-all": "npm run test-main && npm run test-0.8 && npm run test-0.10 && npm run test-0.12",
"test": "if [ -e $TRAVIS ]; then npm run test-all; else npm run test-main; fi"
},
"repository": {
"type": "git",
"url": "git://github.com/thlorenz/inline-source-map.git"
},
"homepage": "https://github.com/thlorenz/inline-source-map",
"dependencies": {
"source-map": "~0.5.3"
},
"devDependencies": {
"tap": "~0.7.0",
"nave": "~0.5.0"
},
"keywords": [
"source",
"map",
"inline",
"base64",
"bundle",
"generate",
"transpile"
],
"author": {
"name": "Thorsten Lorenz",
"email": "thlorenz@gmx.de",
"url": "http://thlorenz.com"
},
"license": "MIT",
"engine": {
"node": ">=0.6"
}
}