generated from github/custom-element-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
38 lines (38 loc) · 1.18 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "@github/remote-input-element",
"version": "0.3.1",
"description": "An input element that sends its value to a server endpoint and renders the response body.",
"main": "dist/umd/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"repository": "github/remote-input-element",
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint './src/**' './test/**.js'",
"prebuild": "npm run clean & npm run lint",
"build": "tsc --outDir dist/umd --module umd && 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'"
},
"devDependencies": {
"@typescript-eslint/parser": "^7.4.0",
"chai": "^4.1.2",
"chromium": "^3.0.3",
"eslint": "8.56.0",
"eslint-plugin-github": "4.10.2",
"eslint-plugin-prettier": "^5.1.3",
"karma": "^6.4.3",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^10.7.3",
"typescript": "5.4.3"
}
}