session-resume/package.json

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

2019-01-24 13:48:44 +03:00
{
2019-02-06 19:22:21 +03:00
"name": "@github/session-resume",
2020-04-11 01:12:47 +03:00
"version": "0.1.0",
2019-02-06 19:22:21 +03:00
"description": "Annotate fields to be persisted on navigation away from the current page.",
"main": "dist/umd/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
2019-02-26 13:46:29 +03:00
"repository": "github/session-resume",
2019-01-24 13:48:44 +03:00
"scripts": {
2019-02-06 19:22:21 +03:00
"clean": "rm -rf dist",
"lint": "eslint src/*.ts test/*.js",
2024-01-24 20:52:11 +03:00
"prebuild": "npm run clean",
"build": "tsc && tsc -m umd --outDir dist/umd",
2024-01-24 20:52:11 +03:00
"pretest": "npm run build && npm run lint",
"test": "karma start karma.config.js",
2019-08-02 14:10:36 +03:00
"prepublishOnly": "npm run build",
"postpublish": "npm publish --ignore-scripts --@github:registry='https://npm.pkg.github.com'"
2019-01-24 13:48:44 +03:00
},
2019-02-06 19:22:21 +03:00
"files": [
"dist"
2019-02-06 19:22:21 +03:00
],
2019-01-24 13:48:44 +03:00
"keywords": [],
2019-02-14 15:52:00 +03:00
"license": "MIT",
2020-04-10 18:17:21 +03:00
"prettier": "@github/prettier-config",
"eslintConfig": {
2021-04-22 15:04:27 +03:00
"root": true,
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:github/browser",
"plugin:github/recommended",
"plugin:github/typescript"
]
},
2019-02-06 19:22:21 +03:00
"devDependencies": {
2020-04-10 18:17:21 +03:00
"@github/prettier-config": "0.0.4",
2021-04-22 14:00:23 +03:00
"chai": "^4.3.4",
2022-02-17 02:17:35 +03:00
"chromium": "^3.0.3",
2022-03-29 16:21:58 +03:00
"eslint": "^8.12.0",
"eslint-plugin-github": "^4.1.3",
2021-04-22 14:00:23 +03:00
"karma": "^6.3.2",
2019-02-06 19:22:21 +03:00
"karma-chai": "^0.1.0",
2019-11-06 02:56:03 +03:00
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
2019-02-06 19:22:21 +03:00
"karma-mocha-reporter": "^2.2.5",
2022-03-29 16:22:24 +03:00
"mocha": "^9.2.2",
2021-04-22 14:00:23 +03:00
"typescript": "^4.2.4"
2019-02-06 19:22:21 +03:00
},
2019-02-21 16:30:51 +03:00
"eslintIgnore": [
"dist/"
]
2019-01-24 13:48:44 +03:00
}