-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.87 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
{
"name": "js-personal-api",
"version": "0.2.1",
"description": "API for managing personal data across various networks and providers.",
"homepage": "https://github.com/personal-api/core#readme",
"author": {
"name": "Chris Vogt",
"email": "[email protected]",
"url": "https://www.chrisvogt.me"
},
"main": "build/index.js",
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rimraf build",
"compile": "./node_modules/.bin/babel -d build src",
"lint": "node ./node_modules/eslint/bin/eslint src test",
"prepublish": "npm run compile",
"prestart": "npm run -s compile",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"start": "node --require dotenv/config build/index.js",
"sync:repositories": "npm run build && node --require dotenv/config build/bin/syncAllRepositories.js",
"test": "nyc mocha --require babel-register"
},
"engines": {
"node": ">=8"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/personal-api/core/issues"
},
"repository": {},
"dependencies": {
"@octokit/rest": "^15.10.0",
"apicache": "^1.2.3",
"chalk": "^2.4.1",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"firebase-admin": "^6.0.0",
"firebase-functions": "^2.0.4",
"lodash": "^4.17.10",
"morgan": "^1.9.0",
"rimraf": "^2.6.2"
},
"devDependencies": {
"axios": "^0.21.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-plugin-istanbul": "^5.0.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"proxyquire": "^2.0.1",
"sinon": "^6.1.5"
}
}