-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.47 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
46
47
48
49
50
51
52
53
{
"peerDependencies": {
"brain.js": "^2.0.0-beta.18"
},
"name": "train-stream",
"description": "A node train stream for brain.js",
"version": "1.0.4",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "src",
"scripts": {
"test": "jest",
"coverage": "jest --coverage --coverage-provider v8 && codecov",
"build": "run-p build:**",
"build:node": "rollup -c rollup.config.js",
"build:gs": "tsc --declaration --emitDeclarationOnly --declarationMap --outFile dist/index.d.ts",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BrainJS/train-stream.git).git"
},
"keywords": [
"brain.js",
"train",
"stream",
"train-stream"
],
"author": "Robert Plummer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BrainJS/train-stream.git)/issues"
},
"homepage": "https://github.com/BrainJS/train-stream.git)#readme",
"dependencies": {
"brain.js": "^2.0.0-beta.18",
"gpu.js": "^2.16.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5",
"rollup": "^2.70.0",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
}
}