-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 1.79 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
65
66
67
68
69
70
71
{
"name": "@livechat/chat-sdk",
"version": "0.2.0",
"description": "SDK for connecting LiveChat as agent",
"main": "dist/chat-sdk.js",
"module": "dist/chat-sdk.esm.js",
"cjs": "dist/chat-sdk.cjs.js",
"license": "MIT",
"files": [
"dist"
],
"contributors": [
"Sambor Górnicz <s.gornicz@livechat.com>"
],
"keywords": [
"livechat"
],
"scripts": {
"build": "rollup -c",
"test": "jest",
"prettier": "prettier --write src/**/*.js",
"eslint": "eslint src/**/*.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "lint-staged && npm run test"
}
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.{json, md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"@babel/preset-env": "^7.6.3",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^10.0.0-0",
"rollup": "^1.24.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-dotenv": "^0.2.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-uglify": "^6.0.3"
},
"dependencies": {
"@livechat/data-utils": "^0.2.7",
"@livechat/mitt": "^0.1.2",
"@livechat/platform-client": "^0.2.0"
}
}