-
Notifications
You must be signed in to change notification settings - Fork 174
/
Copy pathpackage.json
54 lines (54 loc) · 1.29 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
53
54
{
"name": "shuji",
"version": "0.8.0",
"description": "Reverse engineering JavaScript and CSS sources from sourcemaps",
"main": "index.js",
"type": "module",
"bin": {
"shuji": "bin/shuji.js"
},
"scripts": {
"lint": "eslint *.js bin lib",
"test": "c8 --exclude tests --exclude tmp tape tests/*_test.js tests/lib/*_test.js && rm -rf tmp",
"coverage": "c8 --exclude tests --exclude tmp report --reporter=text-lcov > coverage.lcov"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/paazmaya/shuji.git"
},
"keywords": [
"sourcemap",
"reverse",
"engineering"
],
"files": [
"bin",
"lib",
"npm-shrinkwrap.json",
"LICENSE",
"README.md",
"index.js"
],
"author": "Juga Paazmaya <[email protected]> (https://paazmaya.fi)",
"license": "MIT",
"bugs": {
"url": "https://github.com/paazmaya/shuji/issues"
},
"engines": {
"node": ">=22.11.0"
},
"homepage": "https://github.com/paazmaya/shuji#readme",
"dependencies": {
"fs-extra": "11.2.0",
"optionator": "0.9.4",
"source-map": "0.7.4"
},
"devDependencies": {
"@babel/eslint-parser": "7.26.5",
"c8": "10.1.3",
"eslint": "9.18.0",
"eslint-config-paazmaya": "9.0.1",
"eslint-plugin-n": "17.15.1",
"tape": "5.9.0"
}
}