-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.08 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
76
77
78
79
80
{
"name": "poker-sorter",
"version": "1.0.0",
"description": "Poker Hand Strength Evaluator",
"sideEffects": false,
"keywords": [
"typescript",
"poker",
"evaluator"
],
"homepage": "https://github.com/rokinsky/poker/tree/master#readme",
"bugs": {
"url": "https://github.com/rokinsky/poker/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rokinsky/poker.git"
},
"author": "Aleksander Sorokin <ankezy@gmail.com>",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"source": "src/index.ts",
"engines": {
"node": ">=12"
},
"scripts": {
"build": "rollup -c rollup.config.ts",
"dev": "rollup -w -c rollup.config.ts",
"start": "./run.sh",
"test": "run-s test:lint test:unit test:integration",
"test:lint": "eslint . --ext ts,js --max-warnings=0 --ignore-path .gitignore --fix",
"test:integration": "./test.sh run.sh test/integration",
"test:unit": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@rokinsky/eslint-config": "^1.4.1",
"@rokinsky/prettier-config": "^1.0.0",
"@rokinsky/tsconfig": "^2.0.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-run": "^2.1.0",
"@rollup/plugin-strip": "^2.1.0",
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^27.0.3",
"@types/node": "^15.12.3",
"eslint": "^8.4.0",
"jest": "^27.4.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"rollup": "^2.60.2",
"ts-jest": "^27.1.0",
"tslib": "^2.3.1",
"typescript": "^4.5.2"
},
"prettier": "@rokinsky/prettier-config",
"eslintConfig": {
"extends": "@rokinsky/eslint-config",
"settings": {
"react": {
"version": "latest"
}
},
"parserOptions": {
"project": "tsconfig.json"
}
},
"jest": {
"preset": "ts-jest",
"modulePathIgnorePatterns": ["<rootDir>/.rollup.cache", "<rootDir>/dist"],
"moduleNameMapper": {
"@/(.*)": "<rootDir>/src/$1"
}
},
"files": [
"dist"
]
}