-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "emojisense",
"main": "./lib/emojisense",
"version": "0.4.11",
"description": "A simple markdown emoji autocompleter inspired by VSCode's :emojisense:",
"scripts": {
"build": "babel src/ -d lib/",
"dev": "babel src/ -s -d lib/ --watch"
},
"keywords": [
"makrdown",
"emoji",
"intellisense",
"autocomplete"
],
"repository": "git@github.com:ebigram/emojisense",
"license": "MIT",
"styles": "styles/emojisense.less",
"engines": {
"inkdrop": "^5.x"
},
"dependencies": {
"fuzzaldrin": "^2.1.0",
"ramda": "^0.28.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@types/codemirror": "0.0.98",
"@types/node": "^14.10.3",
"babel-eslint": "^10.1.0",
"babel-plugin-ramda": "^2.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"event-kit": "^2.5.3",
"prettier": "^2.0.4"
}
}