forked from github/text-expander-element
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.46 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.46 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
44
45
46
47
48
49
50
51
{
"name": "@github/text-expander-element",
"version": "0.1.2",
"description": "Activates a suggestion menu to expand text snippets as you type.",
"repository": "github/text-expander-element",
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"scripts": {
"clean": "rm -rf dist build",
"lint": "github-lint",
"prebuild": "npm run clean && npm run lint",
"build": "rollup -c && cp src/index.js.flow dist/index.esm.js.flow && cp src/index.js.flow dist/index.umd.js.flow",
"pretest": "npm run build && rollup -c rollup.config.test.js",
"test": "karma start test/karma.config.js",
"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"
],
"dependencies": {
"@github/combobox-nav": "^0.3.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"babel-preset-github": "^3.2.0",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-plugin-github": "^2.0.0",
"flow-bin": "^0.98.1",
"karma": "^4.1.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^6.1.4",
"rollup": "^1.12.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-node-resolve": "^5.0.0"
},
"eslintIgnore": [
"build/",
"dist/"
]
}