-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.39 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
{
"name": "vue-component-style",
"version": "1.0.3",
"description": "A Vue mixin to add style section to components.",
"main": "dist/vue-component-style.cjs.js",
"module": "dist/vue-component-style.esm.js",
"scripts": {
"build": "rimraf ./dist && rollup -c rollup.config.js",
"test": "jest",
"lint": "eslint -c ./.eslintrc.js .",
"lint:fix": "npm run lint -- --fix",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nainemom/vue-component-style.git"
},
"author": "Amir Momenian <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nainemom/vue-component-style/issues"
},
"homepage": "https://github.com/nainemom/vue-component-style#readme",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-transform-modules-commonjs": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@vue/test-utils": "^1.0.0-beta.30",
"babel-jest": "^24.9.0",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-vue": "^6.0.1",
"jest": "^24.9.0",
"jest-environment-jsdom-global": "^1.2.0",
"jsdom": "15.2.1",
"jsdom-global": "3.0.2",
"rimraf": "^3.0.0",
"rollup": "^1.27.5",
"rollup-plugin-terser": "^5.1.2",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
}
}