forked from looker-open-source/actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.55 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
{
"name": "looker-action-hub",
"version": "1.0.0",
"description": "",
"main": "lib/index",
"scripts": {
"start": "forever start -v -c ./node_modules/.bin/ts-node ./src/boot.ts",
"generate-api-key": "./node_modules/.bin/ts-node ./bin/generate_key.ts",
"copy-api-types": "./node_modules/.bin/ts-node ./bin/copy_api_types.ts",
"dev": "./node_modules/.bin/nodemon --exec ./node_modules/.bin/ts-node --no-cache --type-check -- ./src/boot.ts",
"debug": "./node_modules/.bin/nodemon --exec node --inspect --trace-warnings -r ./node_modules/ts-node/register -- ./src/boot.ts",
"debug-trace": "./node_modules/.bin/nodemon --exec node --inspect --trace-sync-io -r ./node_modules/ts-node/register -- ./src/boot.ts",
"test-dev": "./node_modules/.bin/nodemon --exec \"yarn test || true\"",
"test": "yarn test-ts && ./node_modules/.bin/tsc --noEmit && yarn lint",
"test-ts": "./node_modules/.bin/mocha --exit -r ./node_modules/ts-node/register test/**/test.ts",
"lint": "./node_modules/.bin/tslint -c tslint.json 'src/**/*.ts' 'bin/**/*.ts' 'test/**/*.ts' -p tsconfig.json",
"lint-fix": "./node_modules/.bin/tslint --fix -c tslint.json 'src/**/*.ts' 'bin/**/*.ts' 'test/**/*.ts' -p tsconfig.json",
"lint-dependencies": "./node_modules/.bin/depcheck . --ignores '@types/*,depcheck,tslint-language-service' --ignore-dirs 'lib'",
"postinstall": "./node_modules/.bin/tsc -d -p tsconfig.npm.json && gulp copy"
},
"keywords": [
"looker",
"data",
"action"
],
"author": {
"name": "Ryan Cronin",
"email": "[email protected]",
"url": "https://looker.com/"
},
"license": "MIT",
"dependencies": {
"@types/body-parser": "^1.16.5",
"@types/dotenv": "^4.0.1",
"@types/express": "^4.0.37",
"@types/node": "^10.7.0",
"@types/oboe": "^2.0.28",
"@types/promise-ftp": "^1.3.1",
"@types/raven": "^2.1.4",
"@types/request": "^2.0.6",
"@types/request-promise-native": "^1.0.8",
"@types/sanitize-filename": "^1.1.28",
"@types/semver": "^5.4.0",
"@types/uuid": "^3.4.3",
"@types/winston": "^2.3.6",
"blocked-at": "^1.1.2",
"body-parser": "^1.18.2",
"datauri": "^1.0.5",
"do-wrapper": "^3.11.1",
"dotenv": "^5.0.1",
"express": "^4.16.2",
"express-winston": "^2.4.0",
"node-marketo-rest": "^0.7.0",
"nodemon": "^1.12.1",
"oboe": "^2.1.4",
"p-queue": "^3.0.0",
"promise-ftp": "^1.3.5",
"queue": "^4.4.2",
"raven": "^2.4.0",
"request": "^2.87.0",
"request-promise-native": "^1.0.5",
"sanitize-filename": "^1.6.1",
"semver": "^5.4.1",
"ts-node": "^6.0.5",
"tslint-language-service": "^0.9.8",
"typescript": "^3.0.1",
"uuid": "^3.1.0",
"winston": "^2.3.1"
},
"typings": "lib/index",
"engines": {
"node": "10.8.0"
},
"resolutions": {
"**/event-stream": "3.3.4"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/chai-as-promised": "^7.1.0",
"@types/chai-http": "^3.0.3",
"@types/concat-stream": "^1.6.0",
"@types/mocha": "^2.2.44",
"@types/p-queue": "^3.0.0",
"@types/sinon": "^5.0.0",
"@types/sinon-chai": "^2.7.29",
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"chai-http": "chaijs/chai-http",
"concat-stream": "^1.6.2",
"depcheck": "^0.6.8",
"mocha": "^4.0.1",
"sinon": "^5.0.10",
"sinon-chai": "^3.1.0",
"tslint": "^5.11.0",
"gulp": "latest",
"gulp-util": "latest",
"gulp-sass": "latest",
"gulp-coffee": "latest",
"gulp-uglify": "latest",
"gulp-concat": "latest",
"gulp-connect": "latest"
}
}