-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 895 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
{
"name": "song-classifier",
"version": "1.0.0",
"description": "Collect song data and classify",
"main": "src/index.js",
"scripts": {
"test": "mocha --compilers js:babel-register",
"start": "babel-node src/index.js",
"build": "babel src -d dist --copy-files",
"serve": "node dist/index.js"
},
"engines": {
"node": "^6.2.0"
},
"repository": {
"type": "git",
"url": "[email protected]:ZachE888/song-classifier.git"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@tensorflow/tfjs": "^2.7.0",
"axios": "^0.21.0",
"pandas-js": "^0.2.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"mocha": "^3.2.0"
}
}