-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.48 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": "coolpal",
"version": "0.0.0",
"description": "",
"main": "coolpal.js",
"bin": {
"coolpal": "./dist/bin.bundle.js"
},
"scripts": {
"bundle": "webpack",
"coverage": "jest --coverage",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls",
"test": "jest",
"start": "npm run bundle; node dist/bin.bundle.js start",
"docs": "jsdoc -d ./docs lib/**/*.js README.md",
"format": "prettier '{lib,test}/**/*js' --write",
"precommit": "pretty-quick --staged"
},
"author": "coolfriends",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.259.1",
"axios": "^0.17.1",
"babel-runtime": "^6.26.0",
"commander": "^2.15.1",
"discord.js": "^11.3.2",
"google-news-rss": "^0.4.1",
"source-map-support": "^0.5.6",
"weather-js": "^2.0.0"
},
"devDependencies": {
"axios-mock-adapter": "^1.15.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-source-map-support": "^2.0.1",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-3": "^6.24.1",
"cb": "^0.1.0",
"coveralls": "^3.0.1",
"husky": "^0.14.3",
"jest": "^23.1.0",
"jsdoc": "^3.5.5",
"prettier": "^1.13.5",
"pretty-quick": "^1.6.0",
"rollup": "^0.56.5",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8",
"webpack-node-externals": "^1.7.2"
}
}