-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
94 lines (94 loc) · 2.59 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
{
"name": "@looker/chatty",
"version": "2.3.9",
"description": "A simple postMessage host / client channel manager.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"directories": {
"test": "tests"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"build": "tsc",
"docs": "typedoc --gitRevision master --githubPages false --out docs src/index.ts",
"lint": "eslint --format stylish '**/*.ts'",
"lint-fix": "eslint --fix --format stylish '**/*.ts'",
"start": "webpack-dev-server --config webpack-devserver.config.js --hot --open --color --progress",
"prepare": "npm run build",
"prepublishOnly": "npm run test-once",
"test": "npm run lint && karma start karma.conf.js",
"test-once": "npm run lint && karma start karma.conf.js --single-run "
},
"repository": {
"type": "git",
"url": "git+https://github.com/looker-open-source/chatty.git"
},
"author": "Looker",
"license": "MIT",
"bugs": {
"url": "https://github.com/looker-open-source/chatty/issues"
},
"homepage": "https://github.com/looker-open-source/chatty",
"devDependencies": {
"@babel/core": "^7.16.7",
"@looker/eslint-config-oss": "^1.7.21",
"@looker/eslint-plugin": "^1.0.0",
"@types/debug": "^4.1.5",
"@types/jasmine": "^3.10.3",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/typescript-estree": "^5.9.1",
"babel-loader": "^8.2.3",
"eslint": "^8.13.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-testing-library": "^5.0.3",
"jasmine-core": "^4.0.0",
"karma": "^6.3.11",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"karma-typescript": "^5.5.3",
"karma-typescript-es6-transform": "^5.5.3",
"prettier": "^2.4.1",
"ts-loader": "^9.2.6",
"tsutils": "^3.21.0",
"typedoc": "^0.22.10",
"typescript": "^4.5.4",
"typescript-tslint-plugin": "^1.0.1",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3"
},
"dependencies": {
"core-js": "^3.6.4",
"debug": "^2.2.0",
"es6-promise": "^4.2.8"
},
"eslintConfig": {
"extends": [
"@looker/eslint-config-oss"
],
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"no-console": [
"error",
{
"allow": [
"info",
"warn",
"error"
]
}
],
"no-useless-constructor": "off"
}
},
"overrides": {
"remark-parse": "9.0.0"
}
}