-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.23 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
{
"name": "@fullstax/kaplan-meier-estimator",
"description": "Kaplan-Meier-Estimator also known as the product limit estimator.",
"version": "3.1.2",
"author": "fullstax Gmbh & Co. KG <[email protected]>",
"contributors": [
{
"name": "Alexander Wunschik",
"url": "https://github.com/mojoaxel"
},
{
"name": "Brian Craft",
"url": "https://github.com/acthp"
}
],
"license": "Apache-2.0",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"main": "./lib/kaplan-meier-estimator.cjs",
"browser": "./lib/kaplan-meier-estimator.umd.js",
"files": [
"lib/**/*",
"LICENSE",
"README.md"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"lint": "npm run lint:package && npm run lint:eslint",
"lint:package": "npmPkgJsonLint .",
"lint:eslint": "eslint src",
"format": "prettier --write .",
"clean": "rimraf lib",
"build": "npm run clean && rollup -c",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fllstx/kaplan-meier-estimator.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/fllstx/kaplan-meier-estimator/issues"
},
"homepage": "https://fllstx.github.io/kaplan-meier-estimator/",
"prettier": "@fullstax/prettier-config",
"devDependencies": {
"@fullstax/prettier-config": "^1.0.2",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.191",
"@types/papaparse": "^5.3.7",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.33.0",
"jest": "^29.4.1",
"kaplan-meier": "^1.1.0",
"lodash": "^4.17.21",
"npm-package-json-lint": "^6.4.0",
"npm-package-json-lint-config-default": "^5.0.0",
"papaparse": "^5.3.2",
"prettier": "^2.8.3",
"rimraf": "^4.1.2",
"rollup": "^3.12.0",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.5",
"tslib": "^2.5.0",
"typescript": "^4.9.4"
}
}