-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.9 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
{
"name": "velitherm",
"version": "1.2.0",
"description": "Basic Thermodynamics Equations for Soaring Flight (from velivole.fr/meteo.guru)",
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.js",
"types": "./dist/es/index.d.ts",
"scripts": {
"test": "mocha",
"test:cpp": "g++ -Iinclude -o test/test_cc test/test.cc && test/test_cc",
"build": "tsc -p tsconfig.cjs.json && tsc -p tsconfig.es.json && cat src/index.ts | ts-node src/gen_cpp.ts > include/velitherm.h",
"doc": "documentation readme --section=API --parse-extension ts src/index.ts",
"lint": "eslint src/*.ts test/*.ts",
"c8": "npx c8 mocha",
"lcov": "npx c8 report --reporter=text-lcov > coverage/tests.lcov",
"codecov": "curl -s https://codecov.io/bash | bash",
"preversion": "npm run lint && npm run test",
"version": "npm run doc && npm run build && git add package.json README.md",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmomtchev/velitherm.git"
},
"keywords": [
"velivole",
"weather",
"soaring",
"paraligindg",
"sailplane",
"thermodynamics",
"thermal"
],
"author": "Momtchil Momtchev <[email protected]>",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/mmomtchev/velitherm/issues"
},
"homepage": "https://github.com/mmomtchev/velitherm#readme",
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"c8": "^10.1.3",
"chai": "^4.4.0",
"documentation": "^14.0.2",
"eslint": "^8.56.0",
"eslint-plugin-array-func": "^5.0.1",
"eslint-plugin-mocha": "^10.2.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"mocha": "^11.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}