-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
{
"name": "prestissimo",
"version": "2.2.0",
"description": "Ergonomic wrapper for node-midi, powered by TypeScript",
"main": "dist/index.js",
"scripts": {
"format": "prettier \"**/*.{ts,tsx,js,jsx,css,scss,sass,less,md}\" --write",
"example": "npm run build && node example/example.js",
"build": "npm run test && npx tsc",
"list": "node utils/list.js",
"test": "npx jest"
},
"bin": {
"midi-list": "bin/list.js",
"midi-listen": "bin/listen.js",
"midi-simulate": "bin/simulate.js"
},
"repository": "https://github.com/RandomStudio/prestissimo",
"author": "Stephen Buchanan",
"license": "ISC",
"dependencies": {
"log4js": "^6.1.0",
"midi": "^2.0.0",
"parse-strings-in-object": "^2.0.0",
"rc": "^1.2.8",
"yargs": "^17.7.1"
},
"devDependencies": {
"@types/jest": "^28.1.4",
"@types/node": "^14.14.37",
"@types/rc": "^1.1.0",
"prettier": "^2.2.1",
"shx": "^0.3.2",
"ts-jest": "^28.0.5",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.2.3"
},
"keywords": [
"midi",
"music",
"nodejs",
"hardware"
]
}