-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.23 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.23 KB
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
{
"name": "diff-grok",
"author": {
"name": "Viktor Makarichev",
"email": "vmakarichev@datagrok.ai"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"version": "1.3.1",
"description": "Tools for solving initial value problem for ordinary differential equations",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"keywords": [
"initial value problem",
"ordinary differential equations",
"Rosenbrock-Wanner method",
"LSODA",
"CVODE"
],
"devDependencies": {
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.56.0",
"eslint-config-google": "^0.14.0",
"jest": "^29.0.0",
"ts-jest": "^29.0.0",
"typedoc": "^0.28.14",
"typescript": "^5.6.3"
},
"scripts": {
"link": "npm link",
"build-diff-studio": "git clean -f -X -d ./src && tsc",
"build": "tsc --build --clean && tsc",
"lint": "eslint \"./src/**/*.ts\"",
"lint-fix": "eslint \"./src/**/*.ts\" --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git@github.com:datagrok-ai/DiffGrok.git",
"directory": ""
}
}