-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
118 lines (118 loc) · 3.78 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
111
112
113
114
115
116
117
118
{
"name": "@looker/embed-sdk",
"version": "1.8.7",
"description": "A toolkit for embedding Looker",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"directories": {
"test": "tests"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=8.0.0"
},
"files": [
"dist/**/*",
"lib/**/*",
"src/**/*"
],
"scripts": {
"build": "npm run clean && npm run build_utils && tsc && webpack",
"build_utils": "tsc --build tsconfig-server.json",
"clean": "rm -rf lib dist",
"docs": "typedoc --gitRevision master --githubPages false --out docs src/index.ts",
"lint": "eslint --format stylish '**/*.ts'",
"lint-fix": "eslint --format stylish --fix '**/*.ts'",
"start": "npm run build_utils && webpack serve --config webpack-devserver.config.js --hot --color --progress",
"prepare": "husky",
"prepublishOnly": "npm run test-once",
"python": "webpack --config webpack-devserver.config.js && pip install -r demo/requirements.txt && python demo/demo.py",
"server-prep": "npm run build && webpack --config webpack-devserver.config.js && rm -rf ./server/public && mkdir ./server/public && cp ./demo/*.css ./server/public && cp ./demo/*.html ./server/public && cp ./demo/*.js ./server/public",
"server": "npm run server-prep && cd server && ts-node ./app.ts",
"server-dev": "cd server && find . -type f -name '*.js' -delete && ts-node-dev --watch ./utils ./app.ts",
"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/embed-sdk.git"
},
"author": "Looker",
"license": "MIT",
"bugs": {
"url": "https://github.com/looker-open-source/embed-sdk/issues"
},
"homepage": "https://github.com/looker-open-source/embed-sdk",
"devDependencies": {
"@babel/core": "^7.16.7",
"@looker/eslint-config-oss": "^1.7.21",
"@looker/eslint-plugin": "^1.0.0",
"@looker/sdk": "^24.20.0",
"@looker/sdk-node": "^24.20.0",
"@looker/sdk-rtl": "^21.6.3",
"@types/cookie-session": "^2.0.44",
"@types/create-hmac": "^1.1.0",
"@types/express": "^4.17.14",
"@types/jasmine": "^2.8.2",
"@types/node": "^18.16.20",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/typescript-estree": "^5.9.1",
"babel-loader": "^8.2.3",
"body-parser": "^1.20.1",
"cookie-session": "^2.0.0",
"create-hmac": "^1.1.7",
"dotenv": "^8.2.0",
"eslint": "^8.13.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-testing-library": "^5.0.3",
"express": "^4.18.2",
"husky": "^9.1.7",
"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",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typedoc": "^0.22.10",
"typescript": "^4.5.4",
"typescript-tslint-plugin": "^1.0.1",
"webpack": "^5.97.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.0",
"xhr-mock": "^2.5.1"
},
"dependencies": {
"@looker/chatty": "^2.3.9",
"@typescript/lib-dom": "npm:@types/web"
},
"eslintConfig": {
"extends": [
"@looker/eslint-config-oss"
],
"rules": {
"camelcase": "off",
"@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",
"glob-parent": "5.1.2",
"node-forge": "1.3.1"
}
}