-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.12 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
{
"name": "saavn-to-gaana",
"version": "0.0.1",
"description": "Saavn to Gaana converter",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gyandeeps/saavn-to-gaana.git"
},
"author": "Gyandeep Singh <gyandeeps@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gyandeeps/saavn-to-gaana/issues"
},
"homepage": "https://github.com/gyandeeps/saavn-to-gaana#readme",
"dependencies": {
"puppeteer": "^1.7.0"
},
"devDependencies": {
"@types/node": "^10.7.1",
"@types/puppeteer": "^1.6.0",
"prettier": "^1.14.2",
"typescript": "^3.0.1"
},
"prettier": {
"printWidth": 80,
"tabWidth": 4,
"semi": true,
"singleQuote": false,
"trailingComma": "none",
"bracketSpacing": true,
"arrowParens": "always",
"overrides": [
{
"files": "package.json",
"options": {
"tabWidth": 2,
"printWidth": 250
}
}
]
}
}