-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.5 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
{
"name": "node-lastfm-scrobblings",
"version": "1.1.0",
"description": "Get your full scrobblings list and stores it in JSON format",
"main": "index.js",
"scripts": {
"test": "npm test",
"build": "babel lib -d dist --presets es2015,stage-0,stage-2",
"pretty": "prettier --single-quote --semi=false --write lib/** lib/**/*.js",
"lint": "eslint lib/**/* --ext .js -c .eslintrc.json",
"style": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manuasir/node-lastfm-scrobblings.git"
},
"keywords": [
"lastfm",
"gather",
"api",
"data",
"splunk",
"elastic"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-loader": "^7.1.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^5.6.1",
"eslint-plugin-async-await": "^0.0.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-requirejs": "^3.2.0",
"prettier": "^1.14.3",
"standard": "^12.0.1"
},
"author": "Manuel J. Bernal",
"license": "MIT",
"bugs": {
"url": "https://github.com/manuasir/node-lastfm-scrobblings/issues"
},
"homepage": "https://github.com/manuasir/node-lastfm-scrobblings#readme",
"dependencies": {
"babel-runtime": "^6.26.0",
"request": "^2.88.0",
"request-promise": "^4.2.2"
}
}