This repository has been archived by the owner on Nov 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.71 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
{
"name": "github-user-rank-extension",
"version": "1.0.1",
"description": "",
"main": "index.js",
"scripts": {
"clean": "bash scripts/clean.sh",
"build": "bash scripts/build.sh",
"copy": "bash scripts/copy.sh",
"package": "npm run clean && npm run copy && npm run build",
"package:safari": "npm run package && npm run copy -- safari",
"pretest": "tsc",
"report:coverage": "nyc report --reporter=text-lcov | coveralls",
"test": "nyc ava",
"travis": "npm test && npm run package && npm run report:coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/noomorph/github-user-rank-extension.git"
},
"keywords": [
"browser-extension",
"github-extension",
"ranking",
"rank",
"developer",
"hr",
"recruiting",
"recruitment",
"gitlance",
"github"
],
"author": "Yaroslav Serhieiev <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/noomorph/github-user-rank-extension/issues"
},
"homepage": "https://github.com/noomorph/github-user-rank-extension#readme",
"ava": {
"require": [
"./dist/background",
"./dist/content"
]
},
"devDependencies": {
"@types/lodash": "^4.14.108",
"@types/node": "^9.6.7",
"@types/node-fetch": "^1.6.9",
"@types/safari-extension": "^0.0.27",
"ava": "^0.25.0",
"browserify": "^16.2.0",
"coveralls": "^3.0.0",
"exorcist": "^1.0.1",
"node-fetch": "^2.1.2",
"node-sass": "^4.9.0",
"nyc": "^11.7.1",
"tsify": "^4.0.0",
"tslint": "^5.9.1",
"typescript": "^2.8.3",
"web-ext": "^2.6.0"
},
"dependencies": {
"lodash": "^4.17.10",
"tslib": "^1.9.0",
"whatwg-fetch": "^2.0.4"
}
}