-
Notifications
You must be signed in to change notification settings - Fork 94
/
package.json
59 lines (59 loc) · 1.96 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
{
"name": "open-digger",
"version": "1.0.0",
"description": "OpenDigger for open source data mining",
"main": "lib/index.js",
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"build": "tsc",
"test": "npm run clean && npm run build && RUN_TYPE=test node src/index.js",
"ci": "npm run clean && npm run build && RUN_TYPE=ci GITHUB_LOG_URL=$CLICKHOUSE_QUERY_URL node src/index.js",
"publish": "npm run clean && npm run build && RUN_TYPE=publish GITHUB_LOG_URL=$CLICKHOUSE_QUERY_URL node src/index.js",
"data-docker": "docker pull docker-hub.x-lab.info/opendigger/github-sample-log:2.202105 && docker start github-sample-log || docker run -d --name github-sample-log -p 8123:8123 -p 9000:9000 --ulimit nofile=262144:262144 docker-hub.x-lab.info/opendigger/github-sample-log:2.202105",
"pull-label-file-test": "tsc && node lib/ci/pull_label_file_test.js",
"clean": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/X-lab2017/open-digger.git"
},
"keywords": [
"opensource"
],
"author": "FrankZhao",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/X-lab2017/open-digger/issues"
},
"homepage": "https://github.com/X-lab2017/open-digger#readme",
"dependencies": {
"@apla/clickhouse": "^1.6.4",
"@octokit/core": "^3.6.0",
"ali-oss": "^6.17.1",
"dateformat": "^4.5.1",
"ijavascript-plotly": "0.0.1",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"neo4j-driver": "^4.4.1",
"node-cron": "^3.0.0",
"p-wait-for": "^3.1.0",
"parse-neo4j": "^0.6.11",
"pope": "^3.0.0",
"request": "^2.88.2",
"require-from-string": "^2.0.2",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"type": "commonjs",
"devDependencies": {
"@types/ali-oss": "^6.16.3",
"@types/js-yaml": "^4.0.0",
"@types/lodash": "^4.14.178",
"@types/node": "^14.14.37",
"@types/node-cron": "^3.0.1",
"@types/request": "^2.48.5"
}
}