-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.08 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "rakam",
"version": "1.0.0-2",
"description": "Math library focusing on the performance 🚀.",
"main": "main",
"module": "module",
"files": [
"main",
"module",
"bundle"
],
"browserslist": "> 0.25%, not dead",
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scicave/rakam.git"
},
"bugs": {
"url": "https://github.com/scicave/rakam/issues"
},
"homepage": "https://github.com/scicave/rakam#readme",
"scripts": {
"bundle": "rollup -c",
"build": "npm run build:esm && npm run build:cjs && npm run bundle",
"build:esm": "tsc --outDir module --module ESNext",
"build:cjs": "tsc --outDir main --module commonjs",
"format": "prettier --write {src,tests}/**/*.js",
"lint": "eslint src/ --fix",
"test": "jest tests/",
"test:watch": "npm t -- --watch",
"test:cov": "npm t -- --collectCoverage && eval `cat .env` codecov",
"test:ci": "npm t -- --ci --detectOpenHandles --forceExit",
"preversion": "npm run format && npm run lint && npm run test:cov",
"postversion": "node ./updateVersionFile && npm run build"
},
"jest": {
"verbose": true,
"moduleNameMapper": {
"^rakam$": "<rootDir>/main"
}
},
"keywords": [
"math",
"mathematics",
"rakam",
"latex",
"arithmetic",
"interval",
"complex",
"geometry",
"angles",
"fraction",
"interval-arithmetic",
"array-arithmetic",
"calculator",
"numpy"
],
"author": "sciCave",
"license": "Apache-2.0",
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"@wessberg/rollup-plugin-ts": "^1.3.8",
"eslint": "^7.17.0",
"jest": "^26.4.2",
"prettier": "^2.2.1",
"rollup": "^2.36.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.1.3"
},
"dependencies": {
"@scicave/math-latex-parser": "^1.1.1",
"@scicave/math-parser": "^4.2.1",
"fraction.js": "^4.1.0"
}
}