-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.88 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
{
"name": "simplebandit",
"version": "0.1.7",
"description": "An npm library for contextual bandits",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"browser": "dist/browser/simpleBandit.js",
"scripts": {
"format": "npx prettier --write .",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"test": "jest",
"build": "tsc && tsc -p tsconfig.esm.json && cp dist/cjs/index.js dist/cjs/browser.js && npx browserify dist/cjs/browser.js -o dist/browser/simpleBandit.js && npx uglifyjs dist/browser/simpleBandit.js -o dist/browser/simpleBandit.min.js -c -m",
"pretest": "tsc",
"prepublish": "tsc"
},
"keywords": [
"contextual bandits",
"recommender",
"bandit",
"npm",
"library"
],
"author": "Oege Dijk",
"license": "Apache-2.0",
"directories": {
"example": "examples"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/plugin-syntax-jsx": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.0",
"@types/jest": "^29.5.7",
"@types/node": "^20.8.9",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"babel-jest": "^29.7.0",
"browserify": "^17.0.0",
"cssnano": "^6.0.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"parcel-bundler": "^1.12.5",
"postcss": "^8.4.32",
"prettier": "3.0.3",
"react": "^18.2.0",
"react-bootstrap": "^2.9.1",
"react-dom": "^18.2.0",
"react-tabs": "^6.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsify": "^5.0.4",
"tslint": "^6.1.3",
"typescript": "^5.2.2",
"uglify-js": "^3.17.4"
},
"files": [
"dist/"
]
}