forked from vue-typed/vue-typed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.25 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
{
"name": "vue-typed",
"version": "2.1.1",
"description": "Sets of ECMAScript / Typescript decorators that helps you write Vue component easily.",
"keywords": [
"vue",
"component",
"typescript",
"vue-component",
"vuex"
],
"author": {
"name": "Budi Adiono",
"email": "budiadiono@gmail.com",
"url": "http://www.budiadiono.com"
},
"homepage": "http://vue-typed.github.io/vue-typed/",
"repository": {
"type": "git",
"url": "https://github.com/vue-typed/vue-typed.git"
},
"main": "index.js",
"typings": "index.d.ts",
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"build": "rollup -c",
"test:_es6": "webpack --config test/es6/webpack.config.js && mocha test/es6/test.build.js",
"test:_common": "mocha --require ts-node/register test/common/specs/**/*.ts",
"test:_browser": "karma start test/browser/karma.conf.js",
"test:es6": "npm run build && npm run test:_es6",
"test:common": "npm run build && npm run test:_common",
"test:browser": "npm run build && npm run test:_browser",
"test": "npm run build && npm run test:_es6 && npm run test:_common && npm run test:_browser"
},
"peerDependencies": {
"vue": "^2.0.5"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.45",
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.9.0",
"babelify": "^7.3.0",
"browser-sync": "^2.17.5",
"chai": "^3.5.0",
"del": "^2.2.2",
"gitbook": "^3.2.2",
"gitbook-plugin-edit-link": "^2.0.2",
"gitbook-plugin-github": "^2.0.0",
"glob": "^7.1.1",
"gulp": "^3.9.1",
"karma": "^0.13.22",
"karma-mocha": "^0.2.2",
"karma-mocha-reporter": "^2.0.3",
"karma-phantomjs-launcher": "^1.0.0",
"karma-webpack": "^1.7.0",
"mocha": "^3.1.2",
"node-libs-browser": "^1.0.0",
"phantomjs-prebuilt": "^2.1.7",
"rollup": "^0.36.1",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-typescript": "^0.8.1",
"ts-loader": "^0.8.2",
"ts-node": "^1.6.1",
"typescript": "^2.0.3",
"vue": "^2.1.8",
"webpack": "^1.13.1",
"webpack-merge": "^0.13.0"
},
"license": "MIT"
}