-
Notifications
You must be signed in to change notification settings - Fork 429
/
package.json
84 lines (84 loc) · 2.49 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "vue-class-component",
"version": "7.2.6",
"description": "ES201X/TypeScript class decorator for Vue components",
"main": "dist/vue-class-component.common.js",
"module": "dist/vue-class-component.esm.js",
"unpkg": "dist/vue-class-component.js",
"typings": "lib/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"lib",
"hooks.js",
"hooks.d.ts"
],
"scripts": {
"build": "npm run build:ts && npm run build:main",
"build:ts": "tsc -p .",
"build:main": "node build/build.js",
"clean": "rimraf ./lib",
"example": "npm run build && webpack --config example/webpack.config.js",
"dev": "webpack --config example/webpack.config.js --watch",
"dev:test": "node build/dev-test.js",
"lint": "eslint --ext js,jsx,ts,tsx,vue .",
"test": "npm run build && webpack --config test/webpack.config.js && mocha test/test.build.js",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"release": "bash build/release.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/vue-class-component.git"
},
"keywords": [
"vue",
"class",
"babel",
"typescript"
],
"author": "Evan You",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/vue-class-component/issues"
},
"homepage": "https://github.com/vuejs/vue-class-component#readme",
"peerDependencies": {
"vue": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/plugin-syntax-jsx": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"@types/chai": "^4.2.7",
"@types/mocha": "^5.2.7",
"@types/node": "^13.1.6",
"@typescript-eslint/parser": "^2.15.0",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-vue-jsx": "^4.0.1",
"chai": "^4.2.0",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-plugin-vue-libs": "^4.0.0",
"mocha": "^7.0.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.0",
"rollup": "^1.29.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-replace": "^2.2.0",
"testdouble": "^3.12.5",
"ts-loader": "^6.2.1",
"typescript": "^3.7.4",
"uglify-es": "^3.3.9",
"vue": "^2.6.11",
"vue-loader": "^15.8.3",
"vue-template-compiler": "^2.6.11",
"vuepress": "^1.2.0",
"vuex": "^3.1.2",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
}
}