This repository has been archived by the owner on Feb 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
74 lines (74 loc) · 2.35 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
{
"name": "vuency",
"description": "a vuejs concurrency management plugin",
"version": "0.1.6",
"author": "Alid Castano <[email protected]>",
"main": "dist/build.js",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "git://https://github.com/alidcastano/vuency.git"
},
"scripts": {
"dev": "cross-env NODE_ENV=development node demo/server.js",
"e2e": "cross-env NODE_ENV=development node test/e2e/runner.js",
"unit": "cross-env NODE_ENV=development karma start test/unit/karma.conf.js",
"test": "npm run unit -- --single-run",
"codecov": "codecov",
"bundle": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"build": "npm run bundle",
"bump": "npm --no-git-tag-version version patch && npm run build && npm publish"
},
"dependencies": {
"ency": "0.0.20",
"vue": "^2.1.8"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-eslint": "^7.1.1",
"babel-helper-vue-jsx-merge-props": "^2.0.2",
"babel-loader": "^6.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.3.3",
"babel-preset-es2015": "^6.0.0",
"babel-preset-stage-1": "^6.16.0",
"babel-runtime": "^6.23.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chromedriver": "^2.26.1",
"codecov": "^2.1.0",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"eslint": "^3.16.1",
"eslint-config-vue": "^2.0.2",
"eslint-friendly-formatter": "^2.0.7",
"eslint-loader": "^1.6.3",
"eslint-plugin-html": "^2.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-vue": "^2.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.24.1",
"isparta-loader": "^2.0.0",
"karma": "^1.3.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.2.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sinon-chai": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^2.0.2",
"mocha": "^3.2.0",
"nightwatch": "^0.9.12",
"nightwatch-helpers": "^1.2.0",
"selenium-server": "^3.0.1",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"vue-class-component": "^4.4.0",
"vue-loader": "^10.0.0",
"vue-template-compiler": "^2.1.8",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.1.0-beta.9",
"webpack-merge": "^1.1.2"
}
}