-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
38 lines (38 loc) · 1.07 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/paste-markdown",
"version": "1.3.3",
"description": "Paste spreadsheet cells as a Markdown table.",
"repository": "github/paste-markdown",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint . --ext .js,.ts && tsc --noEmit",
"lint:fix": "npm run lint -- --fix",
"prebuild": "npm run clean && npm run lint && mkdir dist",
"bundle": "esbuild --bundle dist/index.js --keep-names --outfile=dist/bundle.js --format=esm",
"build": "tsc && npm run bundle",
"prepublishOnly": "npm run build",
"test": "web-test-runner"
},
"keywords": [
"clipboard",
"markdown"
],
"license": "MIT",
"files": [
"dist/*"
],
"prettier": "@github/prettier-config",
"devDependencies": {
"@github/prettier-config": "^0.0.6",
"@open-wc/testing": "^4.0.0",
"@web/dev-server-esbuild": "^1.0.2",
"@web/test-runner": "^0.18.1",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-plugin-github": "^4.10.2",
"typescript": "^5.4.2"
}
}