-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
package.json
120 lines (120 loc) · 3.23 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"author": "Heather Arthur <[email protected]>",
"browser": "dist/browser.js",
"bugs": {
"url": "https://github.com/brainjs/brain.js/issues"
},
"description": "Neural networks in JavaScript",
"dependencies": {
"thaw.js": "^2.1.4"
},
"peerDependencies": {
"gpu.js": "^2.16.0"
},
"devDependencies": {
"rimraf": "^6.0.0",
"@babel/preset-typescript": "^7.13.0",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^8.2.0",
"@types/eslint": "^7.2.4",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/jest": "^27.0.2",
"@types/node": "^14.14.2",
"@types/prettier": "^2.1.5",
"@types/rollup-plugin-node-builtins": "^2.1.1",
"@types/rollup-plugin-node-globals": "^1.4.0",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"acorn": "^8.0.4",
"c8": "^7.3.4",
"codecov": "^3.8.0",
"del-cli": "^5.0.0",
"eslint": "^7.12.0",
"eslint-config-prettier": "^6.14.0",
"eslint-config-standard": "^15.0.0",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.2",
"fast-xml-parser": "^3.17.4",
"gpu-mock.js": "^1.3.1",
"gpu.js": "^2.15.2",
"husky": "^4.3.0",
"jest": "^26.6.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"rollup": "^2.39.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.4.2",
"ts-node": "^9.1.1",
"typescript": "^4.0.3"
},
"engines": {
"node": ">=8.6.x"
},
"files": [
"dist/"
],
"homepage": "https://github.com/brainjs/brain.js#readme",
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"keywords": [
"ai",
"artificial-intelligence",
"brain",
"brainjs",
"brain.js",
"feed forward",
"neural network",
"classifier",
"neural",
"network",
"neural-networks",
"machine-learning",
"synapse",
"recurrent",
"long short term memory",
"gated recurrent unit",
"time series",
"time step",
"prediction",
"rnn",
"lstm",
"gru"
],
"license": "MIT",
"main": "dist/index.js",
"name": "brain.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/brainjs/brain.js.git"
},
"scripts": {
"build": "run-p build:**",
"build:browser": "rollup -c rollup.config.browser.js",
"build:node": "rollup -c rollup.config.js",
"build:ts": "tsc --declaration --emitDeclarationOnly --declarationMap",
"coverage": "jest --coverage --coverage-provider v8 && codecov",
"dist": "npm run build",
"lint": "run-p lint:**",
"lint:eslint": "eslint --fix --ext .js,.ts src",
"lint:typecheck": "tsc --noEmit",
"test": "jest",
"watch": "run-p watch:**",
"watch:node": "rollup -c rollup.config.js -w",
"watch:test": "jest --watch",
"clean": "rimraf ./dist",
"prepare": "npm run clean && npm run build"
},
"types": "dist/",
"unpkg": "dist/browser.js",
"version": "2.0.0-beta.24"
}