forked from Seb-L/vue-atinternet-smarttag
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.66 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.66 KB
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
{
"name": "vue-atinternet-smarttag",
"version": "0.0.2",
"description": "AtInternet SmartTag implementation as a VueJs plugin and click tracking directive.",
"main": "dist/index.min.js",
"directories": {
"test": "test"
},
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"build": "rollup -c",
"test": "jest --colors --coverageReporters=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/Seb-L/vue-atinternet-smarttag.git"
},
"keywords": [],
"author": "Seb-l",
"license": "MIT",
"bugs": {
"url": "https://github.com/Seb-L/vue-atinternet-smarttag/issues"
},
"homepage": "https://github.com/Seb-L/vue-atinternet-smarttag#readme",
"devDependencies": {
"@babel/core": "^7.1.0",
"@vue/test-utils": "^1.0.0-beta.25",
"babel-core": "^7.0.0-0",
"babel-jest": "^23.6.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"coveralls": "^3.0.2",
"jest": "^23.6.0",
"jest-coverage-badges": "^1.0.0",
"rollup": "^0.66.2",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-uglify": "^6.0.0",
"travis-deploy-once": "^5.0.8",
"vue": "^2.5.17",
"vue-jest": "^2.6.0",
"vue-template-compiler": "^2.5.17",
"vuepress": "^0.14.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
".*\\.(vue)$": "vue-jest",
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
},
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
]
}
}