-
Notifications
You must be signed in to change notification settings - Fork 153
/
package.json
53 lines (53 loc) · 1.3 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
{
"name": "vue-particle-line",
"version": "0.1.4",
"description": "基于 Vue 的线性粒子背景",
"main": "dist/vue-particle-line.umd.min.js",
"keywords": [
"vue-particle-line",
"particle-line",
"particle",
"vue"
],
"license": "MIT",
"private": false,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --dest docs",
"build-lib": "vue-cli-service build --target lib --name vue-particle-line packages/index.js",
"lint": "vue-cli-service lint"
},
"dependencies": {
"vue": "^2.5.21"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.2.0",
"@vue/cli-plugin-eslint": "^3.2.0",
"@vue/cli-service": "^3.2.0",
"@vue/eslint-config-standard": "^4.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0",
"lint-staged": "^8.1.0",
"node-sass": "^4.11.0",
"normalize.css": "^8.0.1",
"prismjs": "^1.15.0",
"sass-loader": "^7.1.0",
"vue-particle-line": "^0.1.0",
"vue-template-compiler": "^2.5.21"
},
"repository": {
"type": "git",
"url": "https://github.com/hzzly/vue-particle-line.git"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}