-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 794 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 794 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": "js-linkedlist",
"description": "An implementation of the doubly-linked list in JavaScript",
"version": "0.1.0",
"author": "Naresh Bhatia",
"license": "MIT",
"homepage": "https://github.com/archfirst/js-linkedlist",
"repository": {
"type": "git",
"url": "https://github.com/archfirst/js-linkedlist.git"
},
"dependencies": {
},
"devDependencies": {
"chai": "^3.4.1",
"gulp": "^3.9.0",
"gulp-jscs": "^3.0.2",
"gulp-jshint": "^2.0.0",
"gulp-load-plugins": "^1.1.0",
"gulp-notify": "^2.1.0",
"gulp-plumber": "^1.0.1",
"jsdoc": "^3.4.0",
"jshint": "^2.8.0",
"jshint-stylish": "^2.1.0",
"mocha": "^2.3.4"
},
"files": [
"src/",
"test/",
"LICENSE",
"README.md"
],
"main": "src/linkedlist.js"
}