-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 819 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 819 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
{
"name": "@personal-api/plugin-instagram",
"version": "0.9.1",
"description": "Add an Express route that returns a user's Instagram photos.",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run unit",
"lint": "xo",
"unit": "nyc ava"
},
"author": "Chris Vogt <mail@chrisvogt.me>",
"repository": "github:personal-api/plugin-instagram",
"license": "MIT",
"keywords": [
"instagram",
"instagram-photos",
"personal-api",
"photos",
"social"
],
"dependencies": {
"got": "^9.6.0"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"xo": {
"space": true
},
"devDependencies": {
"ava": "^1.2.0",
"codecov": "^3.1.0",
"nyc": "^14.1.1",
"proxyquire": "^2.1.0",
"sinon": "^7.2.3",
"xo": "^0.24.0"
}
}