-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 911 Bytes
/
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
{
"name": "playlist-nomad",
"version": "1.0.0",
"description": "Migrate your music playlists from one service to another. e.g. YouTube -> Spotify, Spotify -> Apple Music.",
"main": "index.ts",
"author": "mcpolandc",
"license": "MIT",
"private": false,
"scripts": {
"lint": "eslint src --ext ts",
"test": "jest"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^22.2.2",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.10.0",
"jest": "^22.4.3",
"ts-jest": "^22.4.2",
"tsc": "^1.20150623.0",
"typescript": "^2.8.1",
"typescript-eslint-parser": "^14.0.0"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)test\\.ts)$",
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
]
}
}