forked from davidkevork/reverse-sourcemap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.32 KB
/
package.json
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
45
46
47
48
49
50
51
52
{
"name": "reverse-sourcemap",
"version": "1.0.4",
"description": "Reverse engineering JavaScript and CSS sources from sourcemaps",
"main": "index.js",
"bin": "bin/reverse.js",
"scripts": {
"lint": "eslint index.js bin/reverse-sourcemap",
"test": "nyc --exclude tests tape tests/*_test.js && rm -rf tmp",
"coverage": "nyc --exclude tests report --reporter=text-lcov > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/davidkevork/reverse-sourcemap.git"
},
"keywords": [
"sourcemap",
"reverse",
"engineering",
"reverse-sourcemap"
],
"files": [
"bin",
"LICENSE",
"README.md",
"index.js"
],
"author": "Juga Paazmaya <paazmaya@yahoo.com> (https://paazmaya.fi)",
"contributors": [
"David Kevork <david@davidkevork.me> (https://davidkevork.me)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/davidkevork/reverse-sourcemap/issues"
},
"engines": {
"node": ">=8.11.1"
},
"homepage": "https://github.com/davidkevork/reverse-sourcemap#readme",
"dependencies": {
"fs-extra": "^5.0.0",
"optionator": "^0.8.2",
"source-map": "^0.7.3"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"codecov": "^3.0.0",
"eslint": "^4.19.0",
"nyc": "^11.6.0",
"tape": "^4.9.0"
}
}