forked from paazmaya/shuji
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.18 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
{
"name": "shuji",
"version": "0.4.0",
"description": "Reverse engineering JavaScript and CSS sources from sourcemaps",
"main": "index.js",
"bin": "bin/shuji.js",
"scripts": {
"lint": "eslint index.js bin/shuji.js",
"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://[email protected]/paazmaya/shuji.git"
},
"keywords": [
"sourcemap",
"reverse",
"engineering"
],
"files": [
"bin",
"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": ">=8.11.1"
},
"homepage": "https://github.com/paazmaya/shuji#readme",
"dependencies": {
"fs-extra": "^5.0.0",
"optionator": "^0.8.2",
"source-map": "^0.7.2"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"codecov": "^3.0.0",
"eslint": "^4.19.0",
"eslint-config-paazmaya": "^4.3.0",
"nyc": "^11.6.0",
"tape": "^4.9.0"
}
}