-
Notifications
You must be signed in to change notification settings - Fork 922
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.56 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.56 KB
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
{
"name": "dsa.js",
"version": "1.3.10",
"description": "Data Structures & Algorithms in JS",
"author": "Adrian Mejia <hi+dsajs@adrianmejia.com> (https://adrianmejia.com)",
"homepage": "https://github.com/amejiarosario/dsa.js",
"repository": {
"type": "git",
"url": "https://github.com/amejiarosario/dsa.js.git"
},
"main": "./src/index.js",
"files": [
"src/**/*.js"
],
"scripts": {
"test": "jest src/",
"watch": "jest src/ --watch --coverage",
"coverage": "jest src/ --coverage && open coverage/lcov-report/index.html",
"lint": "npx eslint --fix --format codeframe src/",
"ci": "npx eslint src/ && jest src/ --coverage"
},
"keywords": [
"algorithms",
"data structures",
"javascript",
"graphs",
"linked lists",
"binary search trees"
],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"benchmark": "2.1.4",
"braces": ">=2.3.1",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.1.0",
"cz-emoji": "^1.2.1",
"eslint": "4.19.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "21.17.0",
"handlebars": ">=4.0.14",
"husky": "^4.2.3",
"jest": "23.6.0",
"js-yaml": ">=3.13.1",
"mem": ">=4.0.0",
"textlint-plugin-asciidoctor": "1.0.2"
},
"engines": {
"node": ">=10.0.0"
},
"config": {
"commitizen": {
"path": "cz-emoji"
},
"cz-emoji": {
"types": [
{
"emoji": "🐛",
"code": ":bug: fix",
"description": "Fixing a bug on code.",
"name": "fix code"
},
{
"emoji": "📝",
"code": ":pencil: fix",
"description": "Fixing typos on book.",
"name": "fix typo"
},
{
"emoji": "✨",
"code": ":sparkles: feat",
"description": "Introducing new features on code and/or book.",
"name": "feature"
},
{
"emoji": "💥",
"code": ":boom: break",
"description": "Introducing breaking changes.",
"name": "breaking"
},
{
"emoji": "🔖",
"code": ":bookmark: release",
"description": "Releasing / Version tags.",
"name": "release"
},
{
"emoji": "🔩",
"code": ":wrench: chore",
"description": "Adding CI/build tools.",
"name": "chore"
}
]
}
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
}
}