-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
60 lines (60 loc) · 1.48 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
{
"name": "sidekik",
"private": true,
"devDependencies": {
"@types/jest": "^24.0.6",
"@typescript-eslint/eslint-plugin": "1.3.0",
"cz-lerna-changelog": "2.0.2",
"eslint": "^5.0.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"jest": "^23.1.0",
"lerna": "^3.0.0",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"ts-jest": "^23.10.5",
"typescript": "*"
},
"workspaces": [
"packages/*"
],
"description": "Sidekik for all Data Structures in TypeScript",
"repository": {
"type": "git",
"url": "https://github.com/inf3cti0n95/sidekik.git"
},
"author": "Viraj Trivedi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/inf3cti0n95/sidekik/issues"
},
"homepage": "https://github.com/inf3cti0n95/sidekik#readme",
"scripts": {
"compile": "lerna run tsc",
"publish": "lerna run tsc && lerna publish",
"lint": "pretty-quick",
"test": "jest --notify --passWithNoTests",
"deploy:docs": "./website/deployment/deploy-docs.sh",
"bootstrap": "lerna bootstrap"
},
"keywords": [
"data-structures",
"data",
"structures",
"algorithms",
"ds"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
}
}