-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.38 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
{
"name": "text-versioncontrol",
"version": "0.9.11",
"description": "Text Version Control",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=0.14"
},
"scripts": {
"test": "npx jest --config jestconfig.json --verbose",
"testbail": "npx jest --config jestconfig.json --verbose --bail",
"build": "npx tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "npx tslint -p tsconfig.json",
"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": "https://github.com/kindone/text-versioncontrol.git",
"author": "Won-Wook Hong <[email protected]>",
"license": "MIT",
"keywords": [
"CRDT",
"OT"
],
"devDependencies": {
"@types/jest": "^23.3.2",
"hosted-git-info": ">=2.8.9",
"jest": "^26.6.3",
"jest-each": "^24.7.1",
"jsproptest": "^0.3.8",
"lodash": ">=4.17.21",
"npx": "^10.2.2",
"prettier": "^1.14.2",
"pure-rand": "^1.6.2",
"ts-jest": "^23.1.4",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^4.1.3"
},
"dependencies": {
"@types/underscore": "^1.11.2",
"chalk": "^2.4.1",
"quill-delta": "^4.2.1",
"underscore": "^1.13.1"
}
}