-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
69 lines (69 loc) · 1.63 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
{
"name": "github-original-streak",
"version": "0.15.1",
"description": "Get back longest and current streak on Github prifiles",
"scripts": {
"commit": "git-cz",
"test": "xo",
"prebuild": "rimraf chrome/src/ firefox/data/ build",
"prepackage": "rimraf build",
"build": "webpack",
"build:watch": "webpack --watch",
"package": "mkdirp build && cd ./chrome && zip -r ../build/chrome.zip ./* && cd ../build && cp chrome.zip chrome.nex"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Naramsim/GithubOriginalStreak.git"
},
"keywords": [
"github",
"streak",
"original"
],
"author": "Naramsim",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/Naramsim/GithubOriginalStreak/issues"
},
"homepage": "https://github.com/Naramsim/GithubOriginalStreak#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"commitizen": "^3.1.2",
"css-loader": "^3.6.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.16.0",
"jpm": "^1.3.1",
"json-loader": "^0.5.7",
"mkdirp": "^1.0.4",
"rimraf": "^2.7.1",
"style-loader": "^0.23.1",
"webpack": "^1.15.0",
"xo": "^0.24.0"
},
"xo": {
"envs": [
"browser"
],
"ignores": [
"chrome/**/*",
"firefox/**/*"
],
"esnext": true,
"space": 4,
"rules": {
"linebreak-style": 0,
"max-lines": 0
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"moment": "^2.29.1",
"github-api": "^3.4.0"
}
}