This repository has been archived by the owner on Oct 24, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 204
/
package.json
59 lines (59 loc) · 1.66 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
{
"name": "vue-tabs-component",
"version": "1.5.0",
"description": "A Vue component to easily render tabs",
"main": "dist/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"start": "webpack-dev-server --config docs/webpack.config.js",
"demo": "NODE_ENV=production webpack --config docs/webpack.config.js",
"build": "rm -rf dist && NODE_ENV=production webpack",
"lint": "eslint --ext .js,.vue --fix src __tests__; exit 0",
"prepublish": "npm run test; npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/spatie/vue-tabs-component.git"
},
"keywords": [
"spatie"
],
"author": "Freek Van der Herten",
"license": "MIT",
"bugs": {
"url": "https://github.com/spatie/vue-tabs-component/issues"
},
"homepage": "https://github.com/spatie/vue-tabs-component",
"peerDependencies": {
"vue": "^2.3.0"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.4.0",
"css-loader": "^0.28.1",
"eslint": "^3.7.1",
"eslint-config-spatie": "^1.1.0",
"jest": "^19.0.0",
"jest-vue-preprocessor": "^0.2.0",
"vue": "^2.3.0",
"vue-loader": "^12.0.3",
"vue-template-compiler": "^2.3.0",
"webpack": "^3.12.0",
"webpack-merge": "^4.1.0"
},
"jest": {
"testRegex": "test.js$",
"moduleFileExtensions": [
"js",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/jest-vue-preprocessor"
}
}
}