-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.52 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
{
"name": "babel-plugin-source-map-support",
"version": "2.2.0",
"description": "A Babel plugin which automatically makes stack traces source-map aware",
"repository": "chocolateboy/babel-plugin-source-map-support",
"license": "Artistic-2.0",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"scripts": {
"build": "rollup -c --exports default",
"build:doc": "toc-md README.md",
"clean": "shx rm -rf dist",
"prepublishOnly": "run-p build:doc test:prod",
"rebuild": "run-s clean build",
"test": "run-s rebuild test:run",
"test:debug": "cross-env NODE_ENV=development run-s test",
"test:prod": "cross-env NODE_ENV=production run-s test",
"test:run": "ava --verbose ./test/test.js"
},
"files": [
"dist/index.esm.js",
"dist/index.js"
],
"browserslist": "maintained node versions",
"dependencies": {
"@babel/helper-module-imports": "^7.16.7"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@rollup/plugin-node-resolve": "^13.3.0",
"ava": "^4.3.0",
"cross-env": "^7.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rollup": "^2.75.7",
"shx": "^0.3.4",
"source-map-support": "^0.5.21",
"toc-md-alt": "^0.4.6"
},
"keywords": [
"babel-plugin",
"source-map",
"sourcemap",
"source-maps",
"sourcemaps",
"stack-trace",
"stacktrace",
"v8"
]
}