forked from QingWei-Li/vuep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.68 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
{
"name": "vuep",
"version": "0.6.1",
"description": "A component for rendering Vue components with live editor and preview.",
"main": "dist/vuep.common.js",
"unpkg": "dist/vuep.js",
"scripts": {
"test": "eslint src && jest",
"test:ci": "npm test && cat ./coverage/lcov.info | coveralls",
"build": "node build/build.js && npm run build:css",
"build:css": "node build/build-css.js",
"dev": "rollup -wc build/watch.js"
},
"jest": {
"browser": true,
"collectCoverage": true,
"transform": {
"^.+\\.js$": "babel-jest"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/QingWei-Li/vuep.git"
},
"keywords": [
"vue",
"playground",
"preview",
"editable",
"component",
"vuejs"
],
"author": "qingwei-li <cinwell.li@gmail.com> (https://github.com/QingWei-Li)",
"license": "MIT",
"bugs": {
"url": "https://github.com/QingWei-Li/vuep/issues"
},
"homepage": "https://qingwei-li.github.io/vuep/",
"devDependencies": {
"babel-jest": "^18.0.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-3": "^6.22.0",
"codemirror": "^5.22.0",
"cssnano": "^3.9.1",
"eslint": "^3.12.2",
"eslint-config-vue": "^2.0.1",
"eslint-plugin-vue": "^1.0.0",
"jest": "^18.0.0",
"postcss": "^5.2.7",
"postcss-salad": "^1.0.6",
"rollup": "^0.38.0",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^6.0.1",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^3.2.2",
"vue": "^2.1.7"
},
"peerDependencies": {
"codemirror": "^5.22.0"
},
"dependencies": {
"simple-assign": "^0.1.0"
}
}