-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathpackage.json
36 lines (36 loc) · 1.03 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
{
"name": "crc",
"private": "true",
"scripts": {
"lint": "eslint src/{,**/}*.ts test/{,**/}*.ts",
"test": "./scripts/test",
"build": "./scripts/build",
"benchmark": "./scripts/benchmark"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.15",
"@types/prettier": "^2.7.1",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"beautify-benchmark": "^0.2.4",
"benchmark": "^2.1.4",
"buffer-crc32": "^0.2.13",
"buffer": "^6.0.3",
"chai": "^4.3.7",
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-typescript": "^3.0.0",
"eslint-formatter-pretty": "^4.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"prettier": "^2.8.1",
"seedrandom": "^3.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}