-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
49 lines (49 loc) · 1.32 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
47
48
49
{
"name": "@github/quote-selection",
"description": "Add selected text to a text area as a markdown quote.",
"version": "2.0.0",
"main": "dist/umd/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"repository": "github/quote-selection",
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint src/*.ts test/*.js",
"prebuild": "npm run clean && npm run lint",
"build": "tsc && rollup -c",
"pretest": "npm run build",
"test": "karma start karma.config.js",
"prepublishOnly": "npm run build",
"postpublish": "npm publish --ignore-scripts --@github:registry='https://npm.pkg.github.com'"
},
"prettier": "@github/prettier-config",
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:github/browser",
"plugin:github/recommended",
"plugin:github/typescript"
]
},
"devDependencies": {
"@github/prettier-config": "0.0.4",
"chai": "^4.2.0",
"eslint": "^8.0.1",
"eslint-plugin-github": "^4.10.1",
"karma": "^5.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^10.2.0",
"rollup": "^2.4.0",
"typescript": "^4.4.4"
},
"eslintIgnore": [
"dist/"
]
}