-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
73 lines (73 loc) · 1.9 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
{
"name": "buildkite-graph",
"version": "0.0.0-development",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"private": false,
"files": [
"dist",
"!dist/__tests__"
],
"devDependencies": {
"@types/graphviz": "^0.0.32",
"@types/jest": "^26.0.23",
"@types/js-yaml": "^4.0.1",
"@types/lodash.isequal": "^4.5.8",
"@types/lodash.sortby": "^4.7.6",
"@types/node": "^15.12.5",
"@types/seedrandom": "^3.0.1",
"@types/uniqid": "^5.3.0",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^6.0.0",
"jest": "^27.0.6",
"node-notifier": "^10.0.0",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"rimraf": "^3.0.2",
"seedrandom": "^3.0.5",
"semantic-release": "^17.4.4",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.4.2"
},
"scripts": {
"eslint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prettier": "prettier --write .",
"preprepare": "rimraf dist/",
"prepare": "husky install & tsc",
"lint": "eslint --ext .ts src",
"pretest": "prettier --check . && yarn lint",
"test": "jest --ci --coverage",
"test:watch": "jest --watch --notify",
"semantic-release": "semantic-release"
},
"dependencies": {
"@sindresorhus/slugify": "^1.1.0",
"graphviz": "^0.0.9",
"js-yaml": "^4.1.0",
"lodash.isequal": "^4.5.0",
"lodash.sortby": "^4.7.0",
"ow": "^0.25.0",
"topological-sort": "^0.3.0",
"uniqid": "^5.3.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "[email protected]:joscha/buildkite-graph.git"
}
}