-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 831 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 831 Bytes
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
{
"name": "livecoder",
"version": "1.0.0",
"main": "index.js",
"author": "khusseini",
"license": "GPL-3.0",
"dependencies": {
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"commander": "^2.19.0",
"easymidi": "^1.0.1",
"inquirer": "^6.2.2",
"midi-clock": "^0.0.1",
"shuffle-array": "^1.0.1",
"string-format": "^2.0.0",
"terminal-kit": "^1.26.11"
},
"devDependencies": {
"ava": "^1.2.1",
"babel-register": "^6.26.0",
"nodemon": "^1.18.10"
},
"scripts": {
"test": "ava tests/**/*.test.js --verbose",
"watch": "nodemon --exec babel-node src/index.js run",
"start": "babel-node src/index.js run",
"setup": "yarn install --production=true"
},
"ava": {
"require": [
"./tests/_register.js"
]
}
}