-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.48 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.48 KB
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
{
"name": "genius",
"main": "./lib/index",
"version": "1.0.2",
"description": "An Atom package that retrieves lyrics from Genius (http://genius.com)",
"keywords": [],
"repository": "https://github.com/partials-dev/atom-genius",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"activationCommands": {
"atom-workspace": [
"genius:lyric-search",
"genius:clear-cache"
]
},
"dependencies": {
"atom-space-pen-views": "^2.2.0",
"body-parser": "^1.15.1",
"express": "^4.13.4",
"moment": "^2.13.0",
"node-genius": "^1.0.5",
"passport": "^0.3.2",
"passport-oauth2": "^1.3.0",
"scrape-url": "^3.0.0"
},
"devDependencies": {
"standard": "^7.0.1"
},
"standard": {
"globals": [
"atom",
"describe",
"it",
"expect",
"beforeEach",
"jasmine",
"runs",
"spyOn",
"waitsFor",
"waitsForPromise",
"fit"
]
},
"configSchema": {
"geniusAccessToken": {
"title": "Genius Access Token",
"description": "Lets us pull lyrics from the Genius API",
"type": "string",
"default": ""
},
"geniusClientId": {
"title": "Genius Client ID",
"description": "Tells the Genius API who we are",
"type": "string",
"default": ""
},
"geniusClientSecret": {
"title": "Genius Client Secret",
"description": "Proves our identity to the Genius API",
"type": "string",
"default": ""
}
}
}