-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 984 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": "@brainrepo/presquile",
"version": "1.0.4",
"description": "Adobe audition to Mp3 Chapters",
"main": "index.js",
"license": "MIT",
"repository":"https://github.com/brainrepo/presquile",
"bin": {
"presquile": "./dist/index.js"
},
"scripts": {
"build:watch": "tsc -w && node dist/index.js",
"build": "tsc",
"start": "tsc && node dist/index.js",
"test": "jest",
"lint": "eslint . --ext .ts"
},
"devDependencies": {
"@relmify/jest-fp-ts": "^1.1.1",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"dependencies": {
"commander": "^7.0.0",
"csv-parse": "^4.15.0",
"fp-ts": "^2.9.3",
"io-ts": "^2.2.13",
"io-ts-types": "^0.5.12",
"music-metadata": "^7.6.4",
"node-id3": "^0.2.2"
}
}