-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.12 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.12 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "nice-waves",
"version": "1.0.1",
"description": "Beautiful animated waves",
"author": "Ivan Che",
"bugs": {
"url": "https://github.com/gVguy/nice-waves/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/gVguy/nice-waves.git"
},
"homepage": "https://github.com/gVguy/nice-waves",
"keywords": [
"nice",
"waves",
"javascript",
"svg"
],
"license": "ISC",
"main": "dist/nice-waves.ssr.js",
"browser": "dist/nice-waves.esm.js",
"module": "dist/nice-waves.esm.js",
"unpkg": "dist/nice-waves.min.js",
"files": [
"dist/*.js",
"src/*.js"
],
"scripts": {
"serve": "TARGET=demo vue-cli-service serve dev/serve.js",
"build:demo": "TARGET=demo vue-cli-service build dev/serve.js --dest demo",
"publish:demo": "gh-pages -d demo",
"prepublish:demo": "npm run build:demo",
"build": "TARGET=main rollup -c",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.8",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@vue/cli-plugin-babel": "~4.5.13",
"@vue/cli-plugin-eslint": "~4.5.13",
"@vue/cli-service": "~4.5.13",
"@vue/compiler-sfc": "^3.0.0",
"babel-eslint": "^10.1.0",
"babel-plugin-prismjs": "^2.1.0",
"core-js": "^3.6.5",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-vue": "^7.0.0",
"gh-pages": "^3.2.3",
"prettier": "^2.4.1",
"prismjs": "^1.25.0",
"rollup": "^2.58.3",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.42.1",
"sass-loader": "^10.2.0",
"vue": "^3.0.0",
"vue-color-input": "^1.0.5",
"vue-follow-tooltip": "^1.0.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended",
"prettier"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
}
}