-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.37 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
{
"name": "swrv",
"version": "0.1.1",
"main": "./dist/index.js",
"module": "./esm/index.js",
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:cjs": "tsc --target es5 --module CommonJs -p tsconfig.build.json",
"build:esm": "tsc --target ESNext --module ES6 --outDir esm -p tsconfig.build.json",
"test": "vue-cli-service test:unit",
"types:check": "tsc --noEmit",
"lint": "vue-cli-service lint"
},
"license": "Apache-2.0",
"types": "./dist/index.d.ts",
"files": [
"dist/**",
"esm/**"
],
"peerDependencies": {
"@vue/composition-api": "^0.3.4"
},
"devDependencies": {
"@types/jest": "^24.0.19",
"@vue/cli-plugin-babel": "^4.1.2",
"@vue/cli-plugin-eslint": "^4.1.0",
"@vue/cli-plugin-typescript": "^4.1.0",
"@vue/cli-plugin-unit-jest": "^4.1.0",
"@vue/cli-service": "^4.1.0",
"@vue/composition-api": "^0.3.4",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/eslint-config-typescript": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"all-contributors-cli": "^6.13.0",
"babel-loader": "^8.0.6",
"babel-preset-vca-jsx": "^0.3.4",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"file-loader": "^5.0.2",
"typescript": "~3.7.5",
"vue": "^2.6.11",
"vue-server-renderer": "^2.6.11",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.41.6"
}
}