-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.92 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
55
56
57
58
59
60
61
62
63
64
{
"name": "@dictools/notifier",
"version": "1.0.2",
"description": "Dictools Notifier help the team to know when the dictionary keys have changed by Slack notification",
"author": "Dictools",
"license": "MIT",
"main": "src/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rimraf dist && webpack --config scripts/webpack/build.babel.js -d --progress --colors",
"test": "jest -c scripts/jest/jest.config.json --colors",
"test:watch": "jest -c scripts/jest/jest.config.json --colors --watchAll",
"lint": "eslint -c .eslintrc --fix",
"format": "prettier --config .prettierrc --write \"./src/**/**.js\" \"./test/**/**.js\" --loglevel warn && git add .",
"coveralls": "coveralls < ./test/coverage/lcov.info"
},
"engines": {
"node": ">=10.13.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dictools/notifier"
},
"bugs": {
"url": "https://github.com/dictools/notifier/issues"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.1",
"@babel/node": "^7.10.1",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^6.0.2",
"coveralls": "^3.1.0",
"dotenv": "^8.2.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-prettier": "^3.1.3",
"generate-json-webpack-plugin": "^1.0.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"terser-webpack-plugin": "^3.0.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@slack/webhook": "^5.0.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn format",
"pre-push": "yarn test"
}
}
}