-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.32 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
{
"name": "oss-issue-tracker",
"version": "1.0.0",
"engines": {
"node": ">=7.6.0"
},
"description": "If your team contribute to an OSS project but has no admin access, you cannot assign a task to someone or listen the latest report from community. This tool runs frequency to find the updates and sync to your own repo. Then you can track all the issues from your OSS project.",
"main": "src/index.js",
"scripts": {
"build": "./node_modules/.bin/babel src -d dist",
"start": "npm run build && node dist/index.js",
"lint": "./node_modules/.bin/eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yuwzho/oss-issue-tracker.git"
},
"keywords": [
"oss",
"tooling",
"github"
],
"author": "yuwzho@microsoft.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/yuwzho/oss-issue-tracker/issues"
},
"homepage": "https://github.com/yuwzho/oss-issue-tracker#readme",
"dependencies": {
"@octokit/rest": "^14.0.9",
"babel-runtime": "^6.26.0",
"parse-github-repo-url": "^1.4.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^4.18.2"
}
}