Skip to content

Commit 7e2bea9

Browse files
feat: update package version
1 parent f685bd0 commit 7e2bea9

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

package.json

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,42 @@
11
{
22
"name": "jquery.marker-animation",
3-
"version": "1.4.31",
3+
"version": "1.5.0",
44
"description": "Marker animation jQuery plugin",
5-
"author": {
6-
"name": "Technote",
7-
"email": "technote.space@gmail.com",
8-
"url": "https://technote.space"
9-
},
10-
"license": "MIT",
115
"keywords": [
126
"jquery-plugin",
137
"marker animation",
148
"highlighter"
159
],
1610
"homepage": "https://github.com/technote-space/jquery.marker-animation#readme",
11+
"bugs": {
12+
"url": "https://github.com/technote-space/jquery.marker-animation/issues"
13+
},
1714
"repository": {
1815
"type": "git",
1916
"url": "https://github.com/technote-space/jquery.marker-animation.git"
2017
},
21-
"bugs": {
22-
"url": "https://github.com/technote-space/jquery.marker-animation/issues"
18+
"license": "MIT",
19+
"author": {
20+
"name": "Technote",
21+
"email": "technote.space@gmail.com",
22+
"url": "https://technote.space"
2323
},
2424
"main": "build/index.js",
2525
"files": [
2626
"build"
2727
],
28+
"scripts": {
29+
"build": "webpack --mode production --config webpack.config.js",
30+
"cover": "jest --coverage",
31+
"cover:update": "jest --coverage --updateSnapshot",
32+
"develop": "webpack --mode development --config webpack.config.js",
33+
"lint": "eslint 'src/**/*.js' '__tests__/**/*.js' --cache",
34+
"lint:fix": "eslint --fix 'src/**/*.js' '__tests__/**/*.js'",
35+
"start": "yarn build",
36+
"test": "yarn lint && yarn cover",
37+
"test:update": "yarn lint && yarn cover:update",
38+
"update": "npx npm-check-updates -u && yarn install && yarn upgrade && yarn audit"
39+
},
2840
"devDependencies": {
2941
"@babel/core": "^7.11.6",
3042
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
@@ -46,17 +58,5 @@
4658
},
4759
"publishConfig": {
4860
"access": "public"
49-
},
50-
"scripts": {
51-
"build": "webpack --mode production --config webpack.config.js",
52-
"start": "yarn build",
53-
"test": "yarn lint && yarn cover",
54-
"test:update": "yarn lint && yarn cover:update",
55-
"lint": "eslint 'src/**/*.js' '__tests__/**/*.js' --cache",
56-
"lint:fix": "eslint --fix 'src/**/*.js' '__tests__/**/*.js'",
57-
"cover": "jest --coverage",
58-
"cover:update": "jest --coverage --updateSnapshot",
59-
"develop": "webpack --mode development --config webpack.config.js",
60-
"update": "npx npm-check-updates -u && yarn install && yarn upgrade && yarn audit"
6161
}
6262
}

0 commit comments

Comments
 (0)