-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 991 Bytes
/
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
{
"type": "module",
"name": "js-ballistics",
"version": "2.0.0",
"description": "ISC library for small arms ballistic calculations (JavaScript ES6+)",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/o-murphy/js-ballistics.git"
},
"keywords": [
"ballistic",
"calculator",
"js",
"es6"
],
"author": "o-murphy",
"license": "ISC",
"bugs": {
"url": "https://github.com/o-murphy/js-ballistics/issues"
},
"homepage": "https://github.com/o-murphy/js-ballistics#readme",
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-typescript": "^7.23.3",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1"
}
}