-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 927 Bytes
/
package.json
File metadata and controls
49 lines (49 loc) · 927 Bytes
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
{
"name": "repo-first-commit",
"version": "1.0.0",
"description": "Get the first commit of any GitHub repo.",
"repository": {
"url": "egoist/repo-first-commit",
"type": "git"
},
"main": "dist/repo-first-commit.common.js",
"files": [
"dist"
],
"scripts": {
"test": "jest && npm run lint && npm run build",
"lint": "xo",
"build": "bili"
},
"author": "egoist <0x142857@gmail.com>",
"license": "MIT",
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"babel-preset-es2015": "^6.22.0",
"bili": "^0.14.0",
"jest-cli": "^18.1.0",
"xo": "^0.17.1"
},
"xo": {
"space": 2,
"semicolon": false,
"envs": [
"jest"
],
"ignores": [
"example.js"
]
},
"dependencies": {
"axios": "^0.15.3",
"node-fetch": "^1.6.3",
"parse-link-header": "^0.4.1"
},
"babel": {
"presets": [
"es2015"
]
}
}