-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.03 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
{
"name": "@marchworks/math-methods",
"version": "1.0.0",
"description": "Mathematical Methods",
"main": "build/index.js",
"scripts": {
"build": "webpack",
"test": "jest",
"prepare": "npm run build",
"trypublish": "npm publish || true"
},
"repository": {
"type": "git",
"url": "https://github.com/MarchWorks/math-methods"
},
"author": "Nabil Boussouf <edel.f.wool@gmail.com> (https://github.com/MarchWorks)",
"license": "MIT",
"bugs": {
"url": "https://github.com/MarchWorks/math-methods/issues"
},
"publishConfig": { "registry": "https://npm.pkg.github.com/" },
"homepage": "https://github.com/MarchWorks/math-methods",
"keywords": [
"math",
"numerical-methods",
"optimization-methods",
"gradient-descent",
"optimization",
"mathematics",
"eigenvalues",
"qr-decomposition",
"jacobi-eigenvalues"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"standard --fix"
]
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"**/node_modules/**",
"**/build/**"
],
"globals": [
"performance"
]
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-preset-minify": "^0.5.1",
"eslint": "^6.8.0",
"husky": "^4.2.1",
"jest": "^25.1.0",
"lint-staged": "^10.0.3",
"prettier": "^1.19.1",
"prettier-webpack-plugin": "^1.2.0",
"standard": "^14.3.1",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/scripts/testMock.js",
"\\.(css|less)$": "<rootDir>/scripts/testMock.js"
}
}
}