-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.16 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
58
59
60
{
"name": "@sctg/scientific-notation",
"version": "1.0.1",
"description": "A TypeScript library for converting numbers to various scientific notation formats",
"main": "dist/scientific.min.js",
"types": "dist/scientific.d.ts",
"type": "module",
"scripts": {
"build:old": "tsc --declaration --outDir dist/ src/*.ts && esbuild dist/scientific.js --minify --sourcemap=external --outfile=dist/scientific.min.js",
"build:types": "tsc --emitDeclarationOnly --declaration --outDir dist/ src/*.ts ",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps",
"build:bundle": "esbuild dist/scientific.js --minify --sourcemap=external --outfile=dist/scientific.min.js",
"build": "npm run build:types && npm run build:js && npm run build:bundle",
"test": "jest",
"lint": "eslint ./src/scientific.ts --fix",
"prepare": "npm run build"
},
"files": [
"dist",
"src"
],
"keywords": [
"scientific-notation",
"mathematics",
"latex",
"mathml",
"typescript"
],
"author": "Ronan LE MEILLAT",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/sctg-development/scientific-notation.git"
},
"bugs": {
"url": "https://github.com/sctg-development/scientific-notation/issues"
},
"homepage": "https://github.com/sctg-development/scientific-notation#readme",
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@babel/preset-typescript": "^7.26.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"esbuild": "^0.25.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-unused-imports": "4.1.4",
"jest": "^29.7.0",
"ts-jest": "^29.2.6",
"typescript": "^5.7.3"
},
"publishConfig": {
"access": "public"
}
}