-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.64 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
{
"name": "@jasonheecs/js-data-structures",
"version": "1.2.0",
"description": "A list of common data structures implemented in Javascript",
"main": "lib/index.js",
"scripts": {
"lint": "eslint src/*.js test/*.js",
"fix-lint": "eslint src/*.js test/*.js --fix",
"prepare": "./node_modules/@babel/cli/bin/babel.js src --out-dir lib",
"test": "nyc --reporter=html --reporter=text mocha --require @babel/register",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasonheecs/js-data-structures.git"
},
"keywords": [
"data structures",
"linked list",
"binary search tree",
"queue",
"stack",
"trie",
"min heap",
"doubly linked list",
"circular linked list"
],
"author": "jasonheecs",
"license": "MIT",
"bugs": {
"url": "https://github.com/jasonheecs/js-data-structures/issues"
},
"homepage": "https://github.com/jasonheecs/js-data-structures#readme",
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/register": "^7.6.2",
"chai": "^4.2.0",
"coveralls": "^3.0.7",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^1.3.1",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"random-words": "^1.1.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}