-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.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
{
"name": "@jonaskappa/simts",
"version": "2.2.2",
"description": "A library heavily based on the [Sim.js lib](https://simjs.z5.web.core.windows.net/), developed by Maneesh Varshney. In fact, Sim.js was downloaded and rewritten into typescipt. It does not support all the features of the original library, because some raised errors and were not needed anyways.",
"main": "lib/index.js",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"build:test": "tsc --project tsconfig.test.json && node ./lib_test/test.js",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"update_patch": "npm version patch && npm publish",
"update_minor": "npm version minor && npm publish",
"update_major": "npm version major && npm publish"
},
"author": "Jonas Kappa",
"license": "SEE LICENSE IN LICENSE",
"devDependencies": {
"@types/jest": "^29.2.2",
"@types/luxon": "^3.2.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"files": [
"lib/**/*"
],
"keywords": [
"simulation",
"discrete",
"realtime"
],
"dependencies": {
"luxon": "^3.2.0"
}
}