-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.34 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
{
"name": "@notebox/nb-crdt",
"version": "4.0.1",
"author": "KANG Myung-hun",
"description": "block based CRDT",
"repository": {
"type": "git",
"url": "git+https://github.com/notebox/nb-crdt.git"
},
"keywords": [
"crdt",
"editor"
],
"license": "AGPL-3.0-or-later",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npx tsc && tsc-alias",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"test": "jest",
"test-cover": "jest --coverage",
"test-watch": "jest --watchAll=true",
"test-watch-cover": "jest --coverage --watchAll=true",
"prepare": "npm run build",
"pretest": "npm run build",
"posttest": "npm run lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run lint-fix"
]
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@types/jest": "^29.5.8",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"babel-jest": "^29.7.0",
"eslint": "^8.53.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^4.3.8",
"jest": "^29.7.0",
"lint-staged": "^15.0.2",
"tsc-alias": "^1.8.8",
"typescript": "^5.2.2"
}
}