-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "math-with-frequency",
"version": "0.1.0",
"description": "Math functions to use with frequency table",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rm -rf ./dist && rm -f tsconfig.build.tsbuildinfo",
"compile": "tsc -b tsconfig.build.json",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edk55/math-with-frequency.git"
},
"keywords": [
"math",
"frequency",
"frequency-table"
],
"author": "Eugene Korobkov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/edk55/math-with-frequency/issues"
},
"homepage": "https://github.com/edk55/math-with-frequency#readme",
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/mathjs": "^6.0.11",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.21.0",
"jest": "^26.6.3",
"mathjs": "^9.2.0",
"simple-statistics": "^7.6.0",
"ts-jest": "^26.5.3",
"typescript": "^4.2.3"
}
}