-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.32 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
{
"name": "@wisersolutions/intercom",
"version": "0.0.5",
"description": "Utils for integrating [Intercom](https://www.intercom.com/) into web applications.",
"repository": {
"type": "git",
"url": "git+https://github.com/WiserSolutions/intercom"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"author": "Wiser Solutions, Inc.",
"contributors": [
"Jan Konopásek"
],
"license": "MIT",
"main": "./lib/index.js",
"module": "./es/index.js",
"files": [
"/es",
"/lib"
],
"scripts": {
"format": "prettier --write \"src/**/*.js\" --loglevel warn",
"lint": "eslint -f @wisersolutions/eslint-formatter-idea ./src",
"test": "echo \"This package has no tests.\"",
"build": "transpile-js",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@wisersolutions/eslint-config": "^2.0.6",
"@wisersolutions/eslint-formatter-idea": "^1.0.8",
"@wisersolutions/transpile-js": "^0.0.19",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"prettier": "^1.19.1"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.7.4",
"@hon2a/use-object-memo": "1.0.0",
"core-js": "^3.4.5",
"react-use": "^13.10.0"
},
"peerDependencies": {
"react": "^17.0.2"
}
}