This repository has been archived by the owner on Apr 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
60 lines (60 loc) · 1.97 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
{
"name": "vue-mobiledoc-editor",
"description": "a vuejs mobiledoc editor",
"version": "1.2.21",
"author": "Alid Castano <[email protected]>",
"module": "dist/build.js",
"main": "dist/build.js",
"scripts": {
"purge": "rm -rf dist/",
"bundle": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"dev": "cross-env NODE_ENV=development webpack-dev-server --inline --hot",
"unit": "cross-env NODE_ENV=testing karma start test/unit/karma.conf.js",
"build": "npm run purge && npm run bundle",
"bump": "npm --no-git-tag-version version patch && npm run build && npm publish"
},
"dependencies": {
"mobiledoc-kit": "0.10.15",
"vue": "^2.3.4"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-eslint": "^7.2.3",
"babel-helper-vue-jsx-merge-props": "^2.0.2",
"babel-loader": "^6.0.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-plugin-transform-vue-jsx": "^3.2.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-stage-2": "^6.18.0",
"chai": "^3.5.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"eslint": "^4.1.1",
"eslint-config-vue": "^2.0.2",
"eslint-loader": "^1.8.0",
"eslint-plugin-html": "^3.0.0",
"eslint-plugin-vue": "^2.1.0",
"extract-text-webpack-plugin": "^3.0.0",
"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": "1.7.0",
"mocha": "^3.2.0",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"vue-loader": "^10.0.0",
"vue-template-compiler": "^2.3.4",
"webpack": "2.2.0-rc.2",
"webpack-dev-server": "2.1.0-beta.9",
"webpack-merge": "1.1.2"
}
}