remote-form/package.json

53 строки
1.5 KiB
JSON
Исходник Обычный вид История

2019-03-27 14:33:13 +03:00
{
"name": "@github/remote-form",
2019-05-23 12:13:15 +03:00
"version": "0.0.5",
2019-03-27 14:33:13 +03:00
"description": "Decorator that will submit a form over AJAX",
"repository": "github/remote-form",
"files": [
"dist"
],
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"scripts": {
2019-05-10 13:15:46 +03:00
"clean": "rm -rf dist",
"lint": "github-lint",
"prebuild": "npm run clean && npm run lint && mkdir dist",
"build-umd": "BABEL_ENV=umd babel src/index.js -o dist/index.umd.js",
"build-esm": "BABEL_ENV=esm babel src/index.js -o dist/index.esm.js",
2019-05-21 16:27:48 +03:00
"build": "npm run build-umd && npm run build-esm && cp src/index.js.flow dist/index.umd.js.flow && cp src/index.js.flow dist/index.esm.js.flow",
2019-03-27 14:33:13 +03:00
"pretest": "npm run build",
"test": "karma start test/karma.config.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"decorator",
"remote-form",
"form"
],
2019-05-21 16:23:47 +03:00
"eslintIgnore": [
"dist/"
],
2019-03-27 14:33:13 +03:00
"license": "MIT",
"devDependencies": {
2019-05-10 13:15:46 +03:00
"@babel/cli": "^7.1.5",
"@babel/core": "^7.4.4",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"@babel/plugin-transform-modules-umd": "^7.2.0",
2019-03-27 14:33:13 +03:00
"babel-preset-github": "^3.2.0",
"chai": "^4.2.0",
2019-05-10 13:15:46 +03:00
"eslint": "^5.16.0",
2019-03-27 14:33:13 +03:00
"eslint-plugin-github": "^2.0.0",
2019-05-10 13:15:46 +03:00
"flow-bin": "^0.98.1",
"karma": "^4.1.0",
2019-03-27 14:33:13 +03:00
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
2019-05-10 13:15:46 +03:00
"mocha": "^6.1.4"
2019-03-27 14:33:13 +03:00
},
"dependencies": {
"form-data-entries": "^1.0.2",
"selector-set": "^1.1.4"
}
}