-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.14 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "intercomly",
"version": "1.3.0",
"description": "Typescript bindings to the Intercom API",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bradennapier/intercomly"
},
"author": "Braden Napier <[email protected]>",
"homepage": "https://github.com/bradennapier/intercomly",
"bugs": {
"url": "https://github.com/bradennapier/intercomly/issues"
},
"main": "lib/index.js",
"module": "esm/index.js",
"engines": {
"node": ">= 12"
},
"scripts": {
"build": "npm-run-all -p build:*",
"build:cjs": "ttsc",
"build:es": "ttsc -m esNext --outDir esm",
"clean": "rimraf lib esm",
"commit": "npx git-cz",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "yarn lint --fix",
"lint:fix:quick:package": "pretty-quick --staged --pattern \"package.json\"",
"lint:types": "ttsc --noEmit",
"release": "semantic-release",
"start:dev": "ts-node-dev --compiler ttypescript --respawn -r dotenv/config src/index.dev.ts",
"test": "echo Tests TODO"
},
"files": [
"esm/",
"lib/"
],
"keywords": [
"intercom",
"api",
"typescript",
"sdk"
],
"dependencies": {
"agentkeepalive": "^4.1.3",
"got": "^11.3.0",
"lodash.clone": "^4.5.0",
"tslib": "^2.0.0"
},
"devDependencies": {
"@google/semantic-release-replace-plugin": "^1.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.5",
"@types/lodash.clone": "^4.5.6",
"@types/lodash.isequal": "^4.5.5",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"@zerollup/ts-transform-paths": "^1.7.18",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"dotenv": "^8.2.0",
"eslint": "^7.3.1",
"eslint-config-airbnb-typescript": "^8.0.2",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"gh-pages": "^3.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"lodash.isequal": "^4.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"prettier-plugin-package": "^1.0.0",
"pretty-quick": "^2.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.1.1",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.0.0-pre.49",
"ttypescript": "^1.5.10",
"typedoc": "^0.17.0-3",
"typedoc-plugin-markdown": "^2.3.1",
"typescript": "^4.0.0-beta"
},
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "npm-run-all -p lint:fix:quick:* lint:types && lint-staged",
"prepare-commit-msg": "exec < /dev/tty && node_modules/.bin/git-cz --hook || true",
"pre-push": "npm-run-all -s clean -p lint build -s test"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix"
]
},
"sideEffects": false
}