-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
112 lines (112 loc) · 4.1 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@luxdamore/vue-css-doodle",
"version": "1.0.1",
"description": "Porting of css-doodle to VueJs, a web component for drawing patterns with CSS - SSR Compatible",
"author": "Luca Iaconelli <[email protected]> (https://lucaiaconelli.it)",
"contributors": [
{
"name": "Luca Iaconelli <[email protected]> (https://lucaiaconelli.it)"
}
],
"homepage": "https://luxdamore.github.io/vue-css-doodle",
"main": "dist/VueCssDoodle.umd.min.js",
"umd": "dist/VueCssDoodle.umd.min.js",
"unpkg": "dist/VueCssDoodle.umd.min.js",
"commonjs": "dist/VueCssDoodle.common.js",
"browser": "dist/VueCssDoodle.umd.min.js",
"style": "dist/VueCssDoodle.css",
"keywords": [
"vuejs",
"nuxtjs",
"css-doodle",
"effects",
"css-animations",
"design",
"css",
"doodle"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "vue-cli-service serve",
"build:library": "vue-cli-service build --dest ./dist --target lib --name VueCssDoodle ./src/VueCssDoodle/index.js",
"build:docs": "vue-cli-service build --modern --dest ./docs",
"prebuild": "npm run lint",
"build": "npm run build:library && npm run build:docs",
"prepare": "npm run build",
"check-linting": "vue-cli-service lint",
"stylelint-check": "stylelint ./src/**/*.scss",
"stylelint-fix": "stylelint ./src/**/*.scss --fix",
"eslint-check": "eslint --ext .js,.vue .",
"eslint-fix": "eslint --fix --ext .js,.vue .",
"lint": "npm run eslint-check && npm run stylelint-check",
"lint-fix": "npm run eslint-fix && npm run stylelint-fix",
"release": "npm run build && standard-version && git push --follow-tags && npm publish",
"precommit": "npm run lint"
},
"dependencies": {
"css-doodle": "^0.7.7",
"vue": "^2.6.11"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@nuxtjs/eslint-config": "latest",
"@vue/cli-plugin-babel": "^4.1.1",
"@vue/cli-plugin-eslint": "^4.1.1",
"@vue/cli-service": "^4.1.1",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.0.3",
"cssnano": "^4.1.10",
"eslint": "^6.7.2",
"eslint-config-standard": "^14.1.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-compat": "^3.3.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-nuxt": "^0.5.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-unicorn": "^15.0.1",
"eslint-plugin-vue": "^6.0.1",
"github-markdown-css": "^3.0.1",
"highlight.js": "^10.4.1",
"husky": "^4.0.3",
"modern-normalize": "^0.6.0",
"node-sass": "^4.13.0",
"postcss-combine-duplicated-selectors": "^8.0.3",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-scoped": "^0.0.0",
"postcss-scss": "^2.0.0",
"postcss-url": "^8.0.0",
"prettier": "^1.19.1",
"prettier-eslint": "^9.0.1",
"prettier-stylelint": "^0.4.2",
"sass-loader": "^8.0.0",
"standard-version": "latest",
"stylelint": "^12.0.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-sass-guidelines": "^6.2.0",
"stylelint-config-standard": "^19.0.0",
"stylelint-no-unsupported-browser-features": "^4.0.0",
"stylelint-order": "^4.0.0",
"vue-markdown-loader": "^2.4.1",
"vue-template-compiler": "^2.6.11"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/LuXDAmore/vue-css-doodle.git"
},
"bugs": {
"url": "https://github.com/LuXDAmore/vue-css-doodle/issues"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
}
}