-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
44 lines (44 loc) · 963 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
43
44
{
"name": "normal-distribution",
"version": "1.1.0",
"description": "A small javascript module for working with normal distributions",
"main": "lib/NormalDistribution.js",
"licenses": [
{
"license": "ISC"
}
],
"scripts": {
"build": "tsc",
"test": "jest",
"prepublish": "yarn test && yarn build",
"format": "prettier --write '{src,test}/**/*.ts'"
},
"keywords": [
"javascript",
"normal",
"distribution",
"math",
"maths",
"mathematics",
"probability",
"statistics"
],
"author": "richard.beddington@gmail.com",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/RichieAHB/normal-distribution"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
},
"files": [
"lib/NormalDistribution.js",
"lib/NormalDistribution.d.ts"
]
}