-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
59 lines (59 loc) · 1.59 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
50
51
52
53
54
55
56
57
58
59
{
"name": "@github/text-expander-element",
"version": "2.2.2",
"description": "Activates a suggestion menu to expand text snippets as you type.",
"repository": "github/text-expander-element",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist build",
"compile": "tsc",
"lint": "eslint .",
"prebuild": "npm run clean && npm run lint && npm run compile",
"build": "rollup -c",
"pretest": "npm run build && rollup -c rollup.config.test.js",
"test": "karma start test/karma.config.cjs",
"prepublishOnly": "npm run build",
"postpublish": "npm publish --ignore-scripts --@github:registry='https://npm.pkg.github.com'"
},
"keywords": [
"auto-complete",
"suggestions",
"menu"
],
"license": "MIT",
"files": [
"dist"
],
"prettier": "@github/prettier-config",
"dependencies": {
"@github/combobox-nav": "^2.0.2",
"dom-input-range": "^1.2.0"
},
"devDependencies": {
"@github/prettier-config": "0.0.4",
"chai": "^4.3.4",
"chromium": "^3.0.3",
"eslint": "^8.0.1",
"eslint-plugin-github": "^4.10.2",
"karma": "^6.3.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^10.7.3",
"rollup": "^2.45.1",
"rollup-plugin-node-resolve": "^5.2.0",
"typescript": "^5.4.5"
},
"eslintIgnore": [
"build/",
"dist/",
"test/karma.config.js",
"rollup.config.js",
"rollup.config.test.js",
"prettier.config.js"
]
}