-
Notifications
You must be signed in to change notification settings - Fork 429
/
package.json
64 lines (64 loc) · 1.91 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
{
"name": "vue-class-component",
"version": "6.2.0",
"description": "ES201X/TypeScript class decorator for Vue components",
"main": "dist/vue-class-component.common.js",
"typings": "lib/index.d.ts",
"files": [
"dist",
"lib"
],
"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",
"test": "npm run build && webpack --config test/webpack.config.js && mocha test/test.build.js",
"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",
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.48",
"babel-core": "^6.26.0",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-vue-jsx": "^3.5.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"css-loader": "^0.28.9",
"mocha": "^5.0.1",
"rimraf": "^2.6.2",
"rollup": "^0.55.5",
"rollup-plugin-replace": "^2.0.0",
"testdouble": "^3.5.0",
"ts-loader": "^3.5.0",
"typescript": "^2.7.1",
"uglify-js": "^3.3.10",
"vue": "^2.5.13",
"vue-loader": "^14.1.1",
"vue-template-compiler": "^2.5.13",
"webpack": "^3.11.0"
}
}