-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
89 lines (89 loc) · 3.26 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@vue-a11y/dark-mode",
"version": "1.1.1",
"description": "A component that helps you implement \"dark-mode\" in your Vue app",
"main": "dist/vue-dark-mode.ssr.js",
"browser": "dist/vue-dark-mode.esm.js",
"module": "dist/vue-dark-mode.esm.js",
"unpkg": "dist/vue-dark-mode.min.js",
"types": "index.d.ts",
"scripts": {
"dev": "rollup --config rollup.config.dev.js --watch",
"build": "npm run build:ssr & npm run build:es & npm run build:unpkg",
"build:ssr": "rollup --config rollup.config.prod.js --format cjs --file dist/vue-dark-mode.ssr.js",
"build:es": "rollup --config rollup.config.prod.js --format es --file dist/vue-dark-mode.esm.js",
"build:unpkg": "rollup --config rollup.config.prod.js --format iife --file dist/vue-dark-mode.min.js",
"docs:dev": "vuepress dev docs --no-cache",
"docs:build": "vuepress build docs --no-cache && echo darkmode.vue-a11y.com >> docs/.vuepress/dist/CNAME",
"docs:publish": "gh-pages -d docs/.vuepress/dist",
"demo:dev": "cd demo && npm run serve",
"demo:build": "cd demo && npm run build",
"demo:publish": "cp ./demo/dist/index.html ./demo/dist/200.html && surge ./demo/dist https://vue-dark-mode.surge.sh/",
"release": "standard-version",
"test:unit": "jest",
"test:e2e": "node_modules/.bin/cypress run --headless",
"test:e2e:open": "node_modules/.bin/cypress open ",
"project:publish": "git push --tags origin master && npm run build && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vue-a11y/vue-dark-mode.git"
},
"keywords": [
"vue",
"component",
"a11y",
"accessibility",
"dark-mode",
"light",
"sensitivity",
"visual",
"impairments",
"vue-a11y",
"vuepress",
"vue.js"
],
"author": "Alan Ktquez <ktquez@gmail.com> (https://ktquez-play.web.app/en/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/vue-a11y/vue-dark-mode/issues"
},
"homepage": "https://github.com/vue-a11y/vue-dark-mode#readme",
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^8.0.1",
"@rollup/plugin-replace": "^2.3.3",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/test-utils": "^1.0.3",
"@vuepress/plugin-register-components": "^1.5.0",
"@vuepress/theme-default": "^1.5.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"chokidar": "^3.4.0",
"cypress": "^4.8.0",
"eslint": "^6.8.0",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"eslint-plugin-vue-a11y": "0.0.31",
"eslint-plugin-vuejs-accessibility": "^0.1.3",
"gh-pages": "^3.0.0",
"jest": "^26.0.1",
"portal-vue": "^2.1.7",
"rollup": "^2.15.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-vue": "^5.1.1",
"rollup-plugin-vue-inline-svg": "^1.1.1",
"standard-version": "^8.0.0",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11",
"vuepress": "^1.5.3",
"vuepress-theme-default-vue-a11y": "^0.1.15"
},
"dependencies": {}
}