-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
53 lines (53 loc) · 1.23 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
{
"name": "@bitpshr.net/holler",
"version": "1.2.1",
"description": "Holler sends desktop push notifications from the command line.",
"repository": "github:bitpshr/holler",
"license": "WTFPL",
"keywords": [
"express",
"holler",
"notifications",
"push",
"websockets"
],
"bin": {
"holler": "./cli.js"
},
"scripts": {
"eslint": "eslint '**/*.{js,jsx}' --ignore-path .gitignore --quiet",
"test": "jest --coverage --config=.jestrc.json",
"build": "rm -rf dist && webpack && cp package.json README.md dist/.",
"prettier": "prettier **/*.{json,css,js,jsx} --write"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"copy-webpack-plugin": "^4.5.0",
"eslint": "^4.16.0",
"eslint-config-prettier": "^2.9.0",
"husky": "^0.14.3",
"jest": "^22.1.4",
"lint-staged": "^6.1.0",
"prettier": "^1.10.2",
"push.js": "^1.0.5",
"webpack": "^4.1.0",
"webpack-cli": "^2.0.10"
},
"dependencies": {
"chalk": "^2.3.2",
"moment": "^2.21.0",
"ws": "^4.1.0",
"yargs": "^11.0.0"
}
}