-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1020 Bytes
/
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
{
"name": "@kartjim/linkedlist",
"version": "1.3.0",
"description": "LinkedList implementation in JavaScript",
"main": "index.js",
"scripts": {
"lint": "grunt lint",
"test": "grunt test",
"coverage": "grunt coverage",
"build": "grunt build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/can-dy-jack/linkedlist.git"
},
"keywords": [
"linkedlist",
"javascript",
"data-structure"
],
"author": "can-dy-jack",
"license": "MIT",
"bugs": {
"url": "https://github.com/can-dy-jack/linkedlist/issues"
},
"homepage": "https://github.com/can-dy-jack/linkedlist#readme",
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"grunt": "^1.5.3",
"grunt-contrib-uglify": "^5.2.2",
"grunt-eslint": "^24.0.1",
"grunt-mocha-istanbul": "^5.0.2",
"grunt-mocha-test": "^0.13.3",
"istanbul": "^0.4.5",
"mocha": "^10.2.0"
}
}