-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.3 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
{
"name": "rollup-plugin-remove-call",
"version": "0.1.0",
"description": "A Rollup plugin to remove function calls.",
"main": "dist/index.js",
"module": "dist/index.es.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c",
"test": "TS_NODE_PROJECT='./tsconfig.mocha.json' mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hakocat/rollup-plugin-remove-call.git"
},
"keywords": [
"rollup",
"plugin",
"rollup-plugin",
"remove",
"function",
"remove call"
],
"author": "@hakocat",
"license": "MIT",
"bugs": {
"url": "https://github.com/hakocat/rollup-plugin-remove-call/issues"
},
"homepage": "https://github.com/hakocat/rollup-plugin-remove-call#readme",
"dependencies": {
"acorn-walk": "^8.2.0",
"magic-string": "^0.25.7"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"@rollup/pluginutils": "^4.1.2",
"@types/escodegen": "^0.0.7",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.8",
"acorn": "^8.7.0",
"escodegen": "^2.0.0",
"mocha": "^9.1.4",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
}
}