-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.29 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
{
"name": "rollup-plugin-ternary-replacement",
"version": "0.0.2",
"description": "Plugin that replaces non-null merge and logical assignments with ternary operators",
"keywords": [
"rollup",
"plugin",
"ternary",
"operator",
"replace",
"assignments"
],
"typings": "dist/types/index.d.ts",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"main": "dist/umd.js",
"module": "dist/esm.js",
"repository": {
"type": "git",
"url": "https://github.com/danyaridiger/rollup-plugin-ternary-replacement"
},
"author": "Ridiger Daniil Dmitrievich <extendedmultiselect@yandex.ru>",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"test:unit": "jest",
"lint": "npx eslint ."
},
"dependencies": {
"@rollup/pluginutils": "^5.0.2",
"acorn": "^8.8.2",
"acorn-jsx": "^5.3.2",
"babel-preset-env": "^1.7.0",
"escodegen": "^2.0.0",
"estree-visitor": "^1.0.8",
"magic-string": "^0.30.0"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/plugin-transform-arrow-functions": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.3",
"babel-jest": "^29.5.0",
"eslint": "^8.36.0",
"rollup": "^3.20.2",
"rollup-plugin-dts": "^5.3.0",
"ts-jest": "^29.0.5"
}
}