forked from github/paste-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.13 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.13 KB
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
39
40
41
42
43
{
"name": "@github/paste-markdown",
"version": "1.3.3",
"description": "Paste spreadsheet cells as a Markdown table.",
"repository": "github/paste-markdown",
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint src/*.ts test/*.js",
"prebuild": "npm run clean && npm run lint && mkdir dist",
"build": "rollup -c",
"pretest": "npm run build",
"test": "karma start karma.config.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"clipboard",
"markdown"
],
"license": "MIT",
"files": [
"dist/*"
],
"prettier": "@github/prettier-config",
"devDependencies": {
"@github/prettier-config": "0.0.4",
"chai": "^4.3.4",
"chromium": "^3.0.3",
"eslint": "^7.32.0",
"eslint-plugin-github": "^4.3.0",
"karma": "^6.3.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^9.1.1",
"rollup": "^2.56.3",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.4.3"
}
}