-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.22 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
{
"name": "@chronotruck/vue-icu",
"version": "1.1.0",
"description": "ICU plugin for VueJS",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/chronotruck/vue-icu.git"
},
"scripts": {
"build": "rm -rf ./dist && rollup --config rollup.config.js --failAfterWarnings",
"lint": "eslint lib",
"test": "jest"
},
"files": [
"/dist"
],
"types": "./dist/vue-icu.d.ts",
"author": "William DA SILVA <[email protected]>",
"license": "MIT",
"dependencies": {
"@messageformat/parser": "^5.0.0",
"@vue/composition-api": "^1.1.4",
"messageformat": "^2.3.0",
"vue": "^2.6.14"
},
"devDependencies": {
"@babel/preset-env": "^7.15.4",
"@babel/preset-typescript": "^7.15.0",
"@rollup/plugin-typescript": "^8.2.5",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"@vue/test-utils": "^1.2.2",
"babel-core": "^7.0.0-bridge.0",
"eslint": "^7.32.0",
"jest": "^27.1.1",
"rollup": "^2.56.3",
"rollup-plugin-dts": "^4.0.0",
"ts-jest": "^27.0.5",
"typescript": "^4.3.5",
"vue-jest": "^3.0.7",
"vue-template-compiler": "^2.6.14"
}
}