-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
50 lines (50 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
46
47
48
49
50
{
"name": "vue-ssr-carousel",
"version": "2.5.0",
"description": "A performance focused Vue carousel designed for SSR/SSG environments.",
"main": "index.js",
"scripts": {
"dev": "nuxt dev demo",
"build": "nuxt build demo",
"build:cypress": "yarn instrument && NODE_ENV=test nuxt build demo",
"start": "nuxt start demo",
"generate": "nuxt generate demo --fail-on-error --target=static",
"package": "webpack",
"instrument": "yarn package && nyc instrument index.js instrumented",
"version": "npm run package && git add -A",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BKWLD/vue-ssr-carousel.git"
},
"author": "Bukwild <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BKWLD/vue-ssr-carousel/issues"
},
"homepage": "https://github.com/BKWLD/vue-ssr-carousel#readme",
"dependencies": {
"bukwild-stylus-library": "^3.1.0"
},
"devDependencies": {
"@cloak-app/boilerplate": "^1.0.8",
"@cypress/code-coverage": "^3.10.0",
"@nuxt/content": "1.14.0",
"@percy/cli": "^1.10.4",
"@percy/cypress": "^3.1.2",
"babel-plugin-istanbul": "^6.1.1",
"cypress": "10.8.0",
"mini-css-extract-plugin": "^1.0.0",
"nuxt": "^2.15.7",
"prism-themes": "^1.9.0",
"vue-visual": "^2.6.0",
"webpack-cli": "^4.10.0"
},
"nyc": {
"exclude": [
"**/demo/**/*"
],
"excludeAfterRemap": true
}
}