-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
87 lines (87 loc) · 2.53 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
85
86
87
{
"name": "vue-create-api",
"version": "0.2.3",
"description": "A Vue plugin which make Vue component invocated by API.",
"module": "dist/vue-create-api.esm.js",
"main": "dist/vue-create-api.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"dev": "node examples/server.js",
"build": "node build/build.js",
"unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js",
"codecov": "codecov",
"test": "npm run unit && npm run codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cube-ui/create-api.git"
},
"keywords": [
"create-api",
"cube-ui",
"Vue",
"component"
],
"author": "ustbhuangyi",
"license": "MIT",
"bugs": {
"url": "https://github.com/cube-ui/create-api/issues"
},
"homepage": "https://github.com/cube-ui/create-api#readme",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-istanbul": "^5.0.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.22.0",
"babel-preset-env": "^1.5.1",
"chai": "^4.2.0",
"codecov": "^3.1.0",
"cross-env": "^5.2.0",
"cross-spawn": "^5.0.1",
"css-loader": "^0.28.7",
"eslint": "^4.15.0",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^4.0.0",
"express": "^4.14.1",
"karma": "^3.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^4.0.0-rc.2",
"mocha": "^5.2.0",
"rollup": "^0.65.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-replace": "^2.0.0",
"rollup-watch": "^4.3.1",
"sinon": "^6.3.5",
"sinon-chai": "^3.2.0",
"uglify-js": "^3.1.2",
"vue": "^2.5.16",
"vue-loader": "^15.2.1",
"vue-template-compiler": "^2.5.16",
"vuepress": "^0.10.0",
"vuepress-theme-vue": "^1.0.3",
"webpack": "^4.20.2",
"webpack-dev-middleware": "^1.10.0",
"webpack-hot-middleware": "^2.19.1"
}
}