-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.07 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
{
"name": "unpack-jsmap",
"version": "1.0.3",
"description": "Library for recovering files from Webpack sourcemaps (`.js.map`).",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "tape -r ts-node/register tests/**/*.test.ts",
"coverage": "nyc npm run test",
"build": "tsc"
},
"prepare" : "npm run build",
"keywords": [],
"author": "Vasilii Ermilov",
"license": "ISC",
"files": [
"lib/**/*",
"README.md"
],
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/node": "^16.4.10",
"@types/node-fetch": "^2.5.12",
"@types/tape": "^4.13.2",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"nock": "^13.1.1",
"nyc": "^15.1.0",
"tape": "^5.3.0",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"node-fetch": "^2.6.1"
}
}