-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 902 Bytes
/
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
{
"name": "zazu-template",
"version": "1.0.1",
"description": "Zazu Template for starting your own plugin.",
"main": "zazu.js",
"scripts": {
"lint": "eslint src",
"build": "node ./src/buildKeywordIndex.js",
"postinstall": "npm run build",
"bump": "npm version patch -m 'v%s'",
"postversion": "git push && git push --tags",
"test": "ava"
},
"engines": {
"node": ">= 6.9.1"
},
"license": "Unlicense",
"devDependencies": {
"ava": "^0.18.1",
"babel-eslint": "^7.1.1",
"eslint": "^3.15.0",
"eslint-config-standard": "^6.2.1",
"eslint-config-zen": "^2.0.3",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.9.0",
"eslint-plugin-standard": "^2.0.1"
},
"dependencies": {
"debug": "^2.6.0",
"emojilib": "^2.0.6",
"ramda": "^0.23.0",
"shirt": "^0.2.1"
}
}