-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 919 Bytes
/
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
{
"name": "rollup",
"version": "1.0.0",
"description": "",
"main": "lib/rollupVue.cjs.js",
"module": "lib/rollupVue.esm.js",
"scripts": {
"build": "rollup -c -w",
"build:type": "tsc -p ./tsconfig.type.json",
"test": "jest --no-cache"
},
"author": "fnx",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-typescript": "^8.2.5",
"@types/jest": "^26.0.0",
"jest": "^27.2.3",
"rollup": "^2.17.1",
"rollup-plugin-sourcemaps": "^0.6.2",
"ts-jest": "^27.0.5",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"dependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0"
}
}