-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.57 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
{
"name": "@looker/embed-sdk",
"version": "1.0.0-beta.3",
"description": "A toolkit for embedding Looker",
"main": "dist/main.js",
"typings": "lib/index.d.ts",
"directories": {
"test": "tests"
},
"engines": {
"node": ">=8.6.0",
"npm": ">=5.5.1"
},
"scripts": {
"build": "npm run clean && npm run build_utils && webpack",
"build_utils": "tsc --build tsconfig-server.json",
"clean": "rm -rf lib dist",
"docs": "typedoc --mode file --out docs",
"lint": "tslint --project tsconfig-lint.json --format stylish",
"lint-fix": "tslint --fix --project tsconfig-lint.json --format stylish",
"start": "npm run build_utils && webpack-dev-server --config webpack-devserver.config.js --hot --inline --open --color --progress",
"prepublish": "npm run build",
"prepublishOnly": "npm run test-once",
"python": "webpack --config webpack-devserver.config.js && python demo/demo.py",
"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.3.3",
"@types/create-hmac": "^1.1.0",
"@types/jasmine": "^2.8.2",
"@types/node": "^11.12.1",
"babel-loader": "^8.0.5",
"create-hmac": "^1.1.7",
"dotenv": "^6.2.0",
"jasmine-core": "^2.8.0",
"karma": "^4.0.1",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.1",
"karma-typescript": "^4.0.0",
"karma-typescript-es6-transform": "^4.0.0",
"pre-commit": "^1.2.2",
"ts-loader": "^5.3.3",
"tslint": "^5.8.0",
"tslint-config-standard": "^8.0.0",
"tslint-defocus": "^2.0.6",
"tslint-eslint-rules": "^4.1.1",
"typedoc": "^0.15.0",
"typescript": "^3.3.3",
"typescript-tslint-plugin": "^0.1.2",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.0",
"xhr-mock": "^2.4.1"
},
"dependencies": {
"@looker/chatty": "^2.0.0",
"@looker/sdk": "^0.2.0-beta.22",
"@types/readable-stream": "^2.3.5"
},
"pre-commit": [
"test-once"
]
}