You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.2 KiB
51 lines
1.2 KiB
2 years ago
|
{
|
||
|
"name": "vue-jsonp",
|
||
|
"version": "2.0.0",
|
||
|
"description": "A tiny library for handling JSONP request.",
|
||
|
"main": "./dist/index.js",
|
||
|
"module": "./dist/index.esm.js",
|
||
|
"keywords": [
|
||
|
"Vue",
|
||
|
"JSONP"
|
||
|
],
|
||
|
"files": [
|
||
|
"dist/",
|
||
|
"index.d.ts",
|
||
|
"README.md"
|
||
|
],
|
||
|
"scripts": {
|
||
|
"build": "rollup -c",
|
||
|
"test": "jest",
|
||
|
"pretest": "npm run build",
|
||
|
"preversion": "npm run test",
|
||
|
"prepublish": "npm run test"
|
||
|
},
|
||
|
"author": {
|
||
|
"name": "LancerComet",
|
||
|
"email": "chw644@hotmail.com"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://github.com/LancerComet/vue-jsonp.git"
|
||
|
},
|
||
|
"license": "MIT",
|
||
|
"devDependencies": {
|
||
|
"@types/expect-puppeteer": "^4.4.3",
|
||
|
"@types/jest": "^26.0.14",
|
||
|
"@types/jest-environment-puppeteer": "^4.4.0",
|
||
|
"@types/puppeteer": "^3.0.2",
|
||
|
"jest": "^26.4.2",
|
||
|
"jest-puppeteer": "^4.4.0",
|
||
|
"puppeteer": "^5.3.1",
|
||
|
"rollup": "^2.28.2",
|
||
|
"rollup-plugin-cleanup": "^3.2.1",
|
||
|
"rollup-plugin-delete": "^2.0.0",
|
||
|
"rollup-plugin-terser": "^7.0.2",
|
||
|
"rollup-plugin-typescript2": "^0.27.3",
|
||
|
"ts-jest": "^26.4.1",
|
||
|
"tslint": "^6.1.3",
|
||
|
"typescript": "^4.0.3",
|
||
|
"vue": "^2.6.12"
|
||
|
}
|
||
|
}
|