-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.04 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
{
"name": "vue-gsheets",
"version": "4.0.3",
"description": "Transform data from published google sheets to usable vue items format",
"main": "index.js",
"author": "avimehenwal",
"license": "MIT",
"homepage": "https://github.com/avimehenwal/vue-gsheets#readme",
"repository": {
"type": "git",
"url": "[email protected]:avimehenwal/vue-gsheets.git"
},
"bugs": {
"url": "https://github.com/avimehenwal/vue-gsheets/issues"
},
"scripts": {
"build": "babel --verbose --out-dir dist index.js; tree dist; du index.js; du dist/index.js",
"publ": "yarn run rm; yarn run build; semantic-release; npm publish --dry-run; yarn publish dist --access public",
"pub": "semantic-release; npm publish --dry-run; yarn publish --access public",
"dist": "npm pack --dry-run; yarn --verbose pack",
"changelog": "standard-version --dry-run",
"rm": "rm -rfv dist/; find . -maxdepth 1 -name '*.tgz' -print -delete; find . -maxdepth 1 -type d -name 'package' -print -exec rm -rv {} +",
"sr": "semantic-release --dry-run",
"commit": "git cz"
},
"files": [
"index.js"
],
"dependencies": {
"axios": "^0.19.2"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.7",
"@semantic-release/npm": "^7.0.5",
"babel-preset-es2015": "^6.24.1",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "3.2.0",
"cz-emoji": "^1.2.1",
"eslint": "^7.4.0",
"eslint-plugin-vue": "^6.2.2",
"rollup": "^2.21.0",
"semantic-release": "^17.1.1"
},
"config": {
"cz-emoji": {
"scopes": [
"npm",
"vue",
"netlify"
]
},
"commitizen": {
"path": "cz-emoji"
}
},
"release": {
"branches": [
"master",
"develop"
]
},
"keywords": [
"vuejs",
"vue",
"mixin",
"google-sheets",
"sheets",
"gsheet",
"spreadsheet",
"parser"
]
}