-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
106 lines (106 loc) · 2.65 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"private": true,
"scripts": {
"build": "ts-node ./build.ts",
"ci": "yarn lint && yarn build && yarn test && yarn test:router",
"format": "pretty-quick",
"lint": "tslint -p ./tsconfig.json",
"release": "lerna version --conventional-commits --no-commit-hooks",
"link:all": "lerna exec -- \"yarn link && cd $REPO && yarn link \\$LERNA_PACKAGE_NAME\"",
"test": "jest",
"test:router": "lerna run --scope @profiscience/knockout-contrib-router test"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.4.5",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/babel-core": "^6.25.6",
"@types/benchmark": "^2.1.0",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^27.0.3",
"@types/jquery": "^3.5.9",
"@types/jsdom": "^16.2.13",
"@types/lodash": "^4.14.177",
"@types/node": "^16.11.11",
"babel-core": "^6.26.3",
"babel-jest": "^27.4.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"benchmark": "^2.1.4",
"chalk": "^4.0.0",
"chokidar": "^3.0.1",
"cz-conventional-changelog": "^3.0.2",
"fs-extra": "^10.0.0",
"globby": "^11.0.0",
"husky": "^7.0.0",
"jest": "^27.4.3",
"jest-junit": "^13.0.0",
"jquery": "^3.4.1",
"jsx-dom": "^6.3.1",
"knockout": "3.5.1",
"knockout-punches": "^0.5.1",
"lerna": "^4.0.0",
"lodash": "^4.17.11",
"microtime": "^3.0.0",
"prettier": "^2.0.1",
"pretty-quick": "^3.0.0",
"toprogress": "^0.1.3",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.5.2"
},
"jest": {
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/dist/",
"/node_modules/",
"/router/__tests__/"
],
"coverageReporters": [
"lcov"
],
"moduleFileExtensions": [
"js",
"ts",
"tsx"
],
"testEnvironment": "jsdom",
"testRegex": "(__tests__/[^_]*|[^_]*test)\\.tsx?$",
"testURL": "http://localhost",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"globals": {
"ts-jest": {
"isolatedModules": true,
"diagnostics": false
}
}
},
"prettier": {
"arrowParens": "always",
"semi": false,
"singleQuote": true
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn format --staged"
}
}
}