forked from github/clipboard-copy-element
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.25 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
39
40
41
42
43
44
45
46
{
"name": "@github/clipboard-copy-element",
"version": "1.1.2",
"description": "Copy element text content or input values to the clipboard.",
"repository": "github/clipboard-copy-element",
"main": "dist/index.js",
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint . --ext .js,.ts && tsc --noEmit",
"prebuild": "npm run clean && npm run lint",
"build": "tsc && rollup -c",
"pretest": "npm run build",
"test": "karma start test/karma.config.cjs",
"prepublishOnly": "npm run build",
"postpublish": "npm publish --ignore-scripts --@github:registry='https://npm.pkg.github.com'"
},
"keywords": [
"clipboard"
],
"license": "MIT",
"files": [
"dist"
],
"prettier": "@github/prettier-config",
"devDependencies": {
"@github/prettier-config": "0.0.4",
"chai": "^4.2.0",
"chromium": "^3.0.3",
"eslint": "^6.8.0",
"eslint-plugin-github": "^4.0.0",
"karma": "^6.3.16",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^10.1.0",
"rollup": "^1.32.1",
"typescript": "^3.9.3"
},
"eslintIgnore": [
"dist/"
]
}