This repository has been archived by the owner on Jan 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 1.93 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
72
73
74
75
76
77
{
"name": "@livechat/agent-app-sdk",
"version": "1.5.2",
"description": "SDK for extending LiveChat's Agent App",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/livechat/agent-app-sdk.git"
},
"bugs": {
"url": "https://github.com/livechat/agent-app-sdk/issues"
},
"homepage": "https://github.com/livechat/agent-app-sdk#readme",
"files": [
"dist",
"types"
],
"main": "dist/agentapp.cjs.js",
"module": "dist/agentapp.es.js",
"unpkg": "dist/agentapp.umd.min.js",
"typings": "types/index.d.ts",
"scripts": {
"build": "rollup -c",
"prebuild": "rimraf dist && rimraf types",
"prepublishOnly": "npm run test:ci && npm run build",
"test": "jest",
"test:ci": "jest --ci",
"test:watch": "jest --watch"
},
"dependencies": {
"@babel/runtime": "^7.2.0",
"@livechat/mitt": "0.1.2",
"@livechat/postmessage": "^0.3.2"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.5",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.1.5",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.10",
"core-js": "^3.0.1",
"husky": "^2.1.0",
"jest": "^26.4.1",
"lint-staged": "^8.1.5",
"prettier": "^1.17.0",
"regenerator-runtime": "^0.13.2",
"rimraf": "^2.6.2",
"rollup": "^1.10.1",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-typescript2": "^0.21.0",
"rollup-plugin-uglify": "^6.0.1",
"typescript": "^3.4.5"
},
"prettier": {
"singleQuote": true,
"printWidth": 80
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,json,ts,tsx}": [
"prettier --write",
"git add"
],
"*.md": [
"prettier --write",
"git add"
]
}
}