update
parent
6ef82540a5
commit
5fd0717ac3
2
.babelrc
2
.babelrc
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"presets": [
|
"presets": [
|
||||||
[
|
[
|
||||||
"es2015"
|
"@babel/preset-env"
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
}
|
}
|
File diff suppressed because it is too large
Load Diff
15
package.json
15
package.json
|
@ -1,16 +1,16 @@
|
||||||
{
|
{
|
||||||
"name": "simple-jsonp-promise",
|
"name": "simple-jsonp-promise",
|
||||||
"version": "1.1.0",
|
"version": "1.2.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "build/index.js",
|
"main": "build/index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "echo \"Error: no test specified\" && exit 1",
|
"test": "echo \"Error: no test specified\" && exit 1",
|
||||||
"build": "babel src -d build",
|
"build": "babel src -d build",
|
||||||
"precommit":"yarn run build"
|
"precommit": "yarn run build"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/liziqiang/simple-jsonp-promise.git"
|
"url": "git+https://git.kle.li/TeaSpeak/simple-jsonp-promise.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"jsonp",
|
"jsonp",
|
||||||
|
@ -19,11 +19,12 @@
|
||||||
"author": "Ziqiang Li <ziqiang.lee@gmail.com>",
|
"author": "Ziqiang Li <ziqiang.lee@gmail.com>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/liziqiang/simple-jsonp-promise/issues"
|
"url": "https://git.kle.li/TeaSpeak/simple-jsonp-promise/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/liziqiang/simple-jsonp-promise#readme",
|
"homepage": "https://git.kle.li/TeaSpeak/simple-jsonp-promise",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"babel-cli": "6",
|
"@babel/cli": "^7.23.0",
|
||||||
"babel-preset-es2015": "6"
|
"@babel/core": "^7.23.3",
|
||||||
|
"@babel/preset-env": "^7.23.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue