-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1 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
{
"name": "kuvo-to-mixcloud-text",
"version": "1.0.0",
"description": "Parse Rekordbox's Kuvo .txt output to something that can be pasted into Mixcloud tracklists",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node .",
"lint": "eslint . --ext .js",
"lint:fix": "npm run lint -- --fix",
"test": "mocha \"./{,!(node_modules)/**/}*-test.js\"",
"test:watch": "npm run test -- -w --reporter min",
"build": "nexe -o ./bin/kuvo-to-mixcloud-text index.js"
},
"author": "Ola Christian Gundelsby <[email protected]> (https://github.com/gundelsby)",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write"
]
},
"devDependencies": {
"@sinonjs/referee": "^5.0.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"esm": "^3.2.25",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"mocha": "^7.1.0",
"nexe": "^3.3.7",
"prettier": "^1.19.1"
}
}