-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.05 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
{
"name": "psychometric",
"version": "1.0.6",
"description": "Library of Psychometric formulae",
"main": "./dist/psychometric.umd.cjs",
"module": "./dist/psychometric.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/psychometric.js",
"require": "./dist/psychometric.umd.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "vite build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Broilan/Psychometric.git"
},
"keywords": [
"statistics",
"psychometrics",
"psychology",
"mathematics",
"psychometric"
],
"author": "Tanner aka Broilan",
"license": "ISC",
"bugs": {
"url": "https://github.com/Broilan/Psychometric/issues"
},
"homepage": "https://github.com/Broilan/Psychometric#readme",
"devDependencies": {
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.3.0"
},
"dependencies": {
"simple-statistics": "^7.8.7"
}
}