-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·53 lines (53 loc) · 1.35 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": "sndc",
"version": "1.0.0",
"description": "soundcloud downloader",
"main": "index.js",
"scripts": {
"start": "nodemon startup.js --exec babel-node --presets es2015,stage-2",
"debug": "ndb --exec babel-node --presets es2015,stage-2",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rvpanoz/sndc.git"
},
"keywords": [
"soundcloud",
"downloader",
"node"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/rvpanoz/sndc/issues"
},
"homepage": "https://github.com/rvpanoz/sndc#readme",
"dependencies": {
"cli-progress": "^3.1.0",
"ndb": "^1.1.5",
"prompts": "^2.2.1",
"querystring": "^0.2.0",
"request": "^2.87.0",
"request-promise": "^4.2.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"nodemon": "^1.19.2"
},
"prettier": {
"printWidth": 80,
"parser": "flow",
"formatOnSave": true,
"proseWrap": "always"
}
}