action-input/package.json

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

{
2018-07-08 03:26:05 +03:00
"name": "action-input",
"version": "0.1.0",
"description": "A framework-agnostic input library.",
"main": "",
"license": "MPL-2.0",
"scripts": {
"all": "npm run-script build && npm run-script docs",
"build": "webpack",
"docs": "./node_modules/.bin/esdoc",
"start": "npm run build && http-server .",
"precommit": "pretty-quick --staged",
2018-02-16 12:57:53 +03:00
"lint": "eslint src",
"prettier": "prettier --write src/**/*.js"
},
"repository": {
"type": "git",
2018-07-08 03:26:05 +03:00
"url": "git+https://github.com/mozilla/action-input.git"
},
"author": "Mozilla",
"bugs": {
2018-07-08 03:26:05 +03:00
"url": "https://github.com/mozilla/action-input/issues"
},
"prettier": {
"printWidth": 120
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"plugins": [
"prettier"
],
"extends": [
"prettier"
],
"rules": {
"prettier/prettier": "error",
"prefer-const": "error",
"no-var": "error"
}
},
2018-07-08 03:26:05 +03:00
"homepage": "https://github.com/mozilla/action-input#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.2",
"http-server": "^0.10.0",
"husky": "^0.14.3",
"prettier": "1.10.2",
"pretty-quick": "^1.6.0",
"webpack": "^3.12.0"
}
}