-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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
{
"name": "coffeeDS",
"version": "0.1.0",
"description": "DataStructure revisited and tested, in CoffeeScript",
"main": "gulpfile.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly ./tests/BSTree ./tests/LinkedList ./tests/sorts/native_array -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"dependencies": {
"gulp": "~3.5.2",
"gulp-coffee": "~1.4.1",
"gulp-coffeelint": "~0.2.0",
"gulp-mocha": "~0.4.1",
"gulp-notify": "~0.4.1",
"gulp-util": "~2.2.14",
"should": "~3.1.2",
"istanbul": "~0.2.4",
"gulp-exec": "~1.0.4",
"coveralls": "~2.7.1"
},
"devDependencies": {
"mocha": "~1.17.1"
},
"repository": {
"type": "git",
"url": "git://github.com/beNjiox/coffeeDS.git"
},
"keywords": [
"CoffeeScript",
"trees",
"linkedlist",
"heap",
"hashmap",
"algorithm"
],
"author": "Benjamin Guez",
"license": "MIT",
"bugs": {
"url": "https://github.com/beNjiox/coffeeDS/issues"
},
"homepage": "https://github.com/beNjiox/coffeeDS"
}