-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.24 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.24 KB
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
55
56
{
"name": "@romainmuller/source-mapper",
"version": "0.0.21",
"description": "A tool that helps mapping source locations",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"source-mapper": "bin/source-mapper"
},
"scripts": {
"build": "tsc --build",
"build:watch": "tsc --build --watch",
"test": "jest"
},
"keywords": [
"node",
"source-map",
"tool"
],
"author": "Romain Marcadier-Muller (https://romainmuller.dev)",
"license": "Apache-2.0",
"homepage": "https://github.com/RomainMuller/source-mapper",
"repository": {
"type": "git",
"url": "https://github.com/RomainMuller/source-mapper.git"
},
"bugs": {
"url": "https://github.com/RomainMuller/source-mapper/issues"
},
"engines": {
"node": ">= 12.4.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.11",
"@types/jest": "^26.0.23",
"@types/node": "^12.20.14",
"jest": "^27.0.4",
"standard-version": "^9.3.0",
"typescript": "~4.3.2"
},
"dependencies": {
"chalk": "^4.1.1",
"fs-extra": "^10.0.0",
"source-map": "^0.7.3"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"lcov",
"text"
],
"moduleFileExtensions": [
"js"
]
}
}