forked from paazmaya/shuji
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.27 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
{
"name": "shuji",
"version": "0.7.0",
"description": "Reverse engineering JavaScript and CSS sources from sourcemaps",
"main": "index.js",
"bin": "bin/shuji.js",
"scripts": {
"lint": "eslint index.js bin lib",
"test": "nyc --all --exclude tests --exclude tmp tape tests/*_test.js tests/lib/*_test.js && rm -rf tmp",
"coverage": "nyc --all --exclude tests --exclude tmp report --reporter=text-lcov > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/paazmaya/shuji.git"
},
"keywords": [
"sourcemap",
"reverse",
"engineering"
],
"files": [
"bin",
"lib",
"npm-shrinkwrap.json",
"LICENSE",
"README.md",
"index.js"
],
"author": "Juga Paazmaya <paazmaya@yahoo.com> (https://paazmaya.fi)",
"license": "MIT",
"bugs": {
"url": "https://github.com/paazmaya/shuji/issues"
},
"engines": {
"node": ">=10.13.0"
},
"homepage": "https://github.com/paazmaya/shuji#readme",
"dependencies": {
"fs-extra": "^9.1.0",
"optionator": "^0.9.1",
"source-map": "^0.7.3"
},
"devDependencies": {
"babel-eslint": "10.1.0",
"codecov": "3.8.1",
"eslint": "7.20.0",
"eslint-config-paazmaya": "7.2.0",
"nyc": "15.1.0",
"tape": "5.1.1"
}
}