remote-form/package.json

48 строки
1.2 KiB
JSON
Executable File

{
"name": "@github/remote-form",
"version": "0.0.11",
"description": "Decorator that will submit a form over AJAX",
"repository": "github/remote-form",
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.js",
"types:": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"lint": "github-lint",
"prebuild": "npm run clean && npm run lint && mkdir dist",
"build": "tsc",
"pretest": "npm run build",
"test": "karma start test/karma.config.js",
"prepublishOnly": "npm run build",
"postpublish": "npm publish --ignore-scripts --@github:registry='https://npm.pkg.github.com'"
},
"keywords": [
"decorator",
"remote-form",
"form"
],
"eslintIgnore": [
"dist/"
],
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-plugin-github": "^3.4.1",
"karma": "^5.0.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.0",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^7.1.1",
"typescript": "^3.8.3"
},
"dependencies": {
"form-data-entries": "^1.0.4",
"selector-set": "^1.1.5"
}
}