-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 948 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
{
"name": "chinese-poem-generator",
"version": "0.1.0",
"description": "Chinese poem generator in Node.js",
"main": "index.js",
"scripts": {
"test": "npm run lint && mocha -t 100000 ./test",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DavidCai1993/chinese-poem-generator.js.git"
},
"keywords": [
"chinese",
"poem",
"generator"
],
"author": "DavidCai1993",
"license": "MIT",
"bugs": {
"url": "https://github.com/DavidCai1993/chinese-poem-generator.js/issues"
},
"homepage": "https://github.com/DavidCai1993/chinese-poem-generator.js#readme",
"dependencies": {
"@tensorflow/tfjs": "^1.7.0",
"@tensorflow/tfjs-node": "^1.7.0",
"@tensorflow/tfjs-node-gpu": "^1.7.0",
"commander": "^5.0.0",
"hanzi-tools": "^1.2.21"
},
"devDependencies": {
"mocha": "^7.1.0",
"power-assert": "^1.6.1",
"standard": "^14.3.3"
}
}