-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.38 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
{
"name": "@pderas/vue2-foldable",
"version": "2.0.2",
"description": "A vue 2 component to show / hide content",
"main": "dist/vue-foldable.umd.min.js",
"scripts": {
"lint": "eslint src --ext .js,.vue",
"lint:fix": "eslint src --ext .js,.vue --fix",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"bundle:project": "vue-cli-service build --target lib --name vue-foldable ./src/index.js",
"bundle": "npm run lint && npm run bundle:project"
},
"repository": {
"type": "git",
"url": "git@github.com:PDERAS/vue2-foldable.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"keywords": [
"vue2",
"vue2js",
"vue2foldable",
"vue2-foldable",
"foldable"
],
"contributors": [
{
"name": "Reed Jones",
"email": "reed.jones@pderas.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/PDERAS/vue2-foldable/issues"
},
"homepage": "https://github.com/PDERAS/vue2-foldable#readme",
"files": [
"dist/*",
"src/*"
],
"devDependencies": {
"@pderas/eslint-config": "^1.0.0",
"@vue/babel-preset-app": "^3.12.0",
"@vue/cli-plugin-babel": "^3.12.0",
"@vue/cli-plugin-eslint": "^3.12.0",
"@vue/cli-service": "^3.12.0",
"eslint": "^6.5.1",
"sass": "^1.23.0",
"sass-loader": "^8.0.0",
"vue-template-compiler": "^2.6.10"
}
}