-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 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
50
51
52
53
54
{
"name": "dext-emoji-plugin",
"version": "0.2.1",
"description": "Dext plugin to search for emojis.",
"keywords": [
"dext",
"dext-plugin",
"dango",
"emoj",
"emoji",
"emojis",
"emote",
"emoticon"
],
"main": "index.js",
"files": [
"icon.png",
"index.js"
],
"scripts": {
"lint": "prettier --write '{index.js,{__tests__}/**/*.js}'",
"precommit": "lint-staged",
"test": "jest --coverage"
},
"author": "Vu Tran <vu@vu-tran.com>",
"repository": {
"type": "git",
"url": "https://github.com/vutran/dext-emoji-plugin"
},
"license": "MIT",
"dependencies": {
"emojilib": "^2.2.9"
},
"devDependencies": {
"babel-jest": "^16.0.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"coveralls": "^2.11.14",
"eslint": "^3.7.1",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-plugin-import": "^1.16.0",
"husky": "^0.14.3",
"jest": "^16.0.1",
"lint-staged": "^4.3.0",
"prettier": "^1.7.4"
},
"lint-staged": {
"index.js": [
"prettier --write",
"git add"
]
}
}