-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 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
42
43
44
45
46
{
"name": "load-source-map",
"version": "3.0.1",
"description": "Reads a source file and extracts a sourcemap for consumption (inline or external)",
"main": "lib/index.js",
"engines": {
"node": ">=12"
},
"scripts": {
"test": "tape test/test.js && standard",
"prepublishOnly": "npm test",
"coverage": "nyc --reporter text --reporter lcov tape test/test.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/rexxars/load-source-map.git"
},
"keywords": [
"sourcemap",
"stacktrace"
],
"files": [
"lib"
],
"author": "Espen Hovlandsdal <espen@hovlandsdal.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rexxars/load-source-map/issues"
},
"homepage": "https://github.com/rexxars/load-source-map#readme",
"dependencies": {
"source-map": "^0.8.0-beta.0"
},
"devDependencies": {
"nyc": "^15.1.0",
"standard": "^16.0.4",
"tape": "^5.5.2"
},
"standard": {
"ignore": [
"/test/fixtures/src/",
"/test/fixtures/lib/",
"/test/fixtures/lib-inline/"
]
}
}