-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 765 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 765 Bytes
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
{
"name": "algorithm-visualization",
"version": "1.0.0",
"private": true,
"description": "Visualization and Audibilization of algorithms",
"repository": {
"type": "git",
"url": "git://github.com/doing-data-science/algorithm-visualization.git"
},
"keywords": [
"sort"
],
"devDependencies": {
"eslint": "6",
"eslint-plugin-mocha": "^6.1.0",
"git-contributor": "1",
"husky": "^3.0.5",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"startserver": "1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"scripts": {
"dev": "startserver -p 8081 -s",
"lint": "eslint .",
"test": "istanbul cover `npm bin`/_mocha",
"contributor": "git-contributor"
},
"license": "MIT"
}