-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
{
"name": "cervello",
"version": "0.2.2",
"description": "A simple machine learning lib written in Typescript",
"main": "./dist/cervello.js",
"scripts": {
"build": "webpack",
"test": "jest"
},
"bugs": {
"url": "https://github.com/gdg-tangier/cervello/issues"
},
"homepage": "https://github.com/gdg-tangier/cervello",
"keywords": [
"brain",
"Neural Network",
"Linear Regression",
"Typescript"
],
"author": "Amrani Houssain <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^22.1.2",
"awesome-typescript-loader": "^3.3.0",
"jest": "^22.3.0",
"source-map-loader": "^0.2.3",
"ts-jest": "^22.0.4",
"typescript": "^2.6.1"
},
"dependencies": {
"@types/es6-promise": "0.0.33"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}