-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 917 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
{
"name": "mini-vue",
"version": "1.0.0",
"types": "lib/types/mini-vue3.d.ts",
"main": "lib/mini-vue3.cjs.js",
"module": "lib/mini-vue3.esm.js",
"license": "MIT",
"scripts": {
"build": "rollup -c rollup.config.js",
"build-watch": "rollup -c rollup.config.js --watch",
"test": "jest --runInBand",
"test-coverage": "jest --runInBand --coverage",
"test-watchAll": "jest --runInBand --watchAll"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.4",
"@babel/preset-typescript": "^7.15.0",
"@rollup/plugin-typescript": "^8.2.5",
"@types/jest": "^27.0.1",
"babel-jest": "^27.1.0",
"jest": "^27.1.0",
"rollup": "^2.58.0",
"rollup-plugin-dts": "^4.0.0",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "^4.4.2"
}
}