xsound 2.26.5 → 2.28.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -2
- package/build/xsound.js +1 -1
- package/build/xsound.js.LICENSE.txt +1 -1
- package/build/xsound.js.map +1 -1
- package/package.json +17 -18
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xsound",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.28.1",
|
|
4
4
|
"engines": {
|
|
5
|
-
"node": ">=
|
|
5
|
+
"node": ">=12.0.0 <=14.15.4"
|
|
6
6
|
},
|
|
7
|
-
"description": "
|
|
7
|
+
"description": "XSound gives Web Developers Powerful Audio Features Easily !",
|
|
8
8
|
"main": "build/xsound.js",
|
|
9
9
|
"types": "build/xsound.d.ts",
|
|
10
10
|
"scripts": {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"fix": "eslint --fix src test",
|
|
14
14
|
"build": "npm run clean && NODE_ENV=production webpack --progress --mode production",
|
|
15
15
|
"watch": "npm run clean && webpack --progress --watch",
|
|
16
|
-
"dev": "webpack-
|
|
16
|
+
"dev": "webpack-dev-server --progress",
|
|
17
17
|
"test": "npm run lint && karma start",
|
|
18
18
|
"release:patch": "npm version patch && git push && git push origin --tags",
|
|
19
19
|
"release:minor": "npm version minor && git push && git push origin --tags",
|
|
@@ -56,31 +56,30 @@
|
|
|
56
56
|
],
|
|
57
57
|
"dependencies": {},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@babel/core": "^7.
|
|
60
|
-
"@babel/plugin-proposal-class-properties": "^7.
|
|
61
|
-
"@babel/preset-env": "^7.
|
|
59
|
+
"@babel/core": "^7.16.0",
|
|
60
|
+
"@babel/plugin-proposal-class-properties": "^7.16.0",
|
|
61
|
+
"@babel/preset-env": "^7.16.4",
|
|
62
62
|
"babel-eslint": "^10.1.0",
|
|
63
|
-
"babel-loader": "^8.2.
|
|
63
|
+
"babel-loader": "^8.2.3",
|
|
64
64
|
"babel-plugin-transform-class-properties": "^6.24.1",
|
|
65
|
-
"copy-webpack-plugin": "^
|
|
65
|
+
"copy-webpack-plugin": "^10.0.0",
|
|
66
66
|
"eslint": "^7.32.0",
|
|
67
67
|
"eslint-cli": "^1.1.1",
|
|
68
68
|
"eslint-config-standard": "^16.0.3",
|
|
69
|
-
"eslint-plugin-import": "^2.
|
|
69
|
+
"eslint-plugin-import": "^2.25.3",
|
|
70
70
|
"eslint-plugin-node": "^11.1.0",
|
|
71
|
-
"eslint-plugin-promise": "^5.1.
|
|
71
|
+
"eslint-plugin-promise": "^5.1.1",
|
|
72
72
|
"eslint-plugin-standard": "^5.0.0",
|
|
73
|
-
"generate-changelog": "^1.8.0",
|
|
74
73
|
"husky": "4.3.8",
|
|
75
|
-
"jasmine": "^3.
|
|
76
|
-
"karma": "^6.3.
|
|
74
|
+
"jasmine": "^3.10.0",
|
|
75
|
+
"karma": "^6.3.9",
|
|
77
76
|
"karma-chrome-launcher": "^3.1.0",
|
|
78
77
|
"karma-cli": "^2.0.0",
|
|
79
78
|
"karma-jasmine": "^4.0.1",
|
|
80
79
|
"karma-webpack": "dev",
|
|
81
|
-
"lint-staged": "^
|
|
82
|
-
"webpack": "^5.
|
|
83
|
-
"webpack-cli": "^4.
|
|
84
|
-
"webpack-dev-server": "^4.
|
|
80
|
+
"lint-staged": "^12.0.3",
|
|
81
|
+
"webpack": "^5.64.1",
|
|
82
|
+
"webpack-cli": "^4.9.1",
|
|
83
|
+
"webpack-dev-server": "^4.5.0"
|
|
85
84
|
}
|
|
86
85
|
}
|