-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
76 lines (76 loc) · 2.24 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
{
"name": "@threads/json-patch-ot",
"version": "1.1.0",
"description": "Library to reconcile JSON patch changes using Operational Transformation",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"files": [
"lib/"
],
"scripts": {
"test": "jest --no-cache",
"test:watch": "jest --no-cache --watch",
"test:coverage": "jest --no-cache --coverage && cat ./coverage/lcov.info | codacy-coverage",
"clean": "rimraf lib",
"build": "tsc",
"watch": "yarn clean && tsc -w",
"preversion": "yarn lint && yarn test",
"precommit": "pretty-quick --staged && yarn lint",
"prepush": "yarn prettier:diff && yarn test",
"release": "semantic-release",
"prettier": "prettier --write 'src/**/*.{ts,tsx,js,jsx,json}'",
"prettier:diff": "prettier --list-different 'src/**/*.{ts,tsx,js,jsx,json}'",
"ci:test": "yarn prettier:diff && yarn lint && yarn test:coverage",
"lint": "yarn tslint",
"tslint": "tslint './src/**/*.{ts,tsx}' -t verbose -p .",
"commitmsg": "commitlint -E GIT_PARAMS"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ThreadsStyling/json-patch-ot.git"
},
"keywords": [
"json",
"patch",
"ot",
"operational",
"transformation"
],
"author": "[email protected]",
"bugs": {
"url": "https://github.com/ThreadsStyling/json-patch-ot/issues"
},
"homepage": "https://github.com/ThreadsStyling/json-patch-ot#readme",
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"@threads/tsconfig": "^1.0.0",
"@types/jest": "^23.1.5",
"@types/node": "^10.5.2",
"codacy-coverage": "^3.4.0",
"commit-status": "^4.3.0",
"cross-ci": "^1.4.0",
"husky": "^0.14.3",
"jest": "^23.3.0",
"prettier": "^1.13.7",
"pretty-quick": "^1.6.0",
"rimraf": "^2.6.2",
"semantic-release": "^15.8.1",
"ts-jest": "^23.0.0",
"tslint": "^5.10.0",
"typescript": "^3.5.2"
},
"dependencies": {},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"transformIgnorePatterns": [],
"testRegex": ".*/__tests__/.*\\.(test|spec)\\.ts$"
}
}