-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "@mariosimao/nodal-analysis-core",
"version": "0.4.0",
"description": "Electric circuits nodal analysis",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": [
"/dist"
],
"scripts": {
"test": "jest src",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mariosimao/nodal-analysis-core.git"
},
"author": "Mario Günter Simão",
"license": "MIT",
"bugs": {
"url": "https://github.com/mariosimao/nodal-analysis-core/issues"
},
"homepage": "https://github.com/mariosimao/nodal-analysis-core#readme",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"babel-jest": "^26.6.3",
"eslint": "^7.26.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"jest": "^26.6.3",
"typescript": "^4.2.4"
},
"dependencies": {
"@types/mathjs": "^9.3.0",
"mathjs": "^9.3.0"
}
}