-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.19 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
{
"name": "pull-request-aggregator",
"version": "1.1.1",
"description": "Aggregate pull-requests from different repositories",
"main": "dist/index.js",
"scripts": {
"run-sample": "node samples/index.js",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src/",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx src/",
"dev": "tsc --watch",
"build": "tsc --build",
"clean": "rm -Rf dist/",
"prepare": "npm run clean && npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sylvainar/pull-request-aggregator.git"
},
"author": "Sylvain Arnouts (sylvainar)",
"license": "ISC",
"bugs": {
"url": "https://github.com/sylvainar/pull-request-aggregator/issues"
},
"homepage": "https://github.com/sylvainar/pull-request-aggregator#readme",
"dependencies": {
"superagent": "^5.1.0",
"url-join": "^4.0.1"
},
"devDependencies": {
"@types/node": "^12.12.8",
"@types/superagent": "^4.1.4",
"@types/url-join": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-typescript": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"typescript": "^3.7.2"
}
}