-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
70 lines (70 loc) · 1.66 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "rollup-plugin-sourcemaps",
"version": "0.6.3",
"description": "Rollup plugin for grabbing source maps from sourceMappingURLs",
"author": "Max Davidson <[email protected]>",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.cjs"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/maxdavidson/rollup-plugin-sourcemaps"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"build": "rimraf dist && rollup --config",
"test": "jest",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"preversion": "npm run test"
},
"keywords": [
"rollup",
"rollup-plugin",
"sourcemap",
"source-map",
"sourceMappingURL"
],
"files": [
"dist"
],
"dependencies": {
"@rollup/pluginutils": "^3.0.9",
"source-map-resolve": "^0.6.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "6.0.0",
"@types/node": "^10.17.21",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^26.0.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.0",
"rollup": "^2.7.5",
"ts-jest": "^26.0.0",
"typescript": "~4.0.0"
},
"peerDependencies": {
"@types/node": ">=10.0.0",
"rollup": ">=0.31.2"
},
"peerDependenciesMeta": {
"@types/node": {
"optional": true
}
}
}