forked from nuxt-modules/color-mode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·50 lines (50 loc) · 1.25 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": "@nuxtjs/color-mode",
"version": "1.0.0",
"description": "Dark and Light mode for NuxtJS with auto detection",
"repository": "nuxt-community/color-mode-module",
"license": "MIT",
"contributors": [
{
"name": "NuxtJS Team"
}
],
"files": [
"lib"
],
"main": "lib/module.js",
"scripts": {
"dev": "nuxt example",
"build": "rollup -c",
"lint": "eslint --ext .js,.vue .",
"prepublish": "yarn build",
"release": "yarn test && standard-version && git push --follow-tags && npm publish",
"test": "yarn lint && jest"
},
"dependencies": {
"defu": "^2.0.2",
"lodash.template": "^4.5.0"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/preset-env": "latest",
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@nuxtjs/eslint-config": "latest",
"@nuxtjs/module-test-utils": "latest",
"@nuxtjs/svg": "^0.1.11",
"babel-eslint": "latest",
"babel-jest": "latest",
"eslint": "latest",
"husky": "latest",
"jest": "latest",
"nuxt-edge": "latest",
"rollup": "latest",
"rollup-plugin-babel": "latest",
"rollup-plugin-terser": "latest",
"standard-version": "latest"
},
"publishConfig": {
"access": "public"
}
}