-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.04 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
{
"name": "thin-tree",
"version": "0.0.15",
"description": "Thin-tree helps build recursive tree structures.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/evanrs/thin-tree.git"
},
"author": "Evan Schneider",
"contributors": [
{
"email": "learykara@gmail.com",
"name": "Kara Leary"
},
{
"email": "olex@thinkful.com",
"name": "Olex Ponomarenko"
},
{
"email": "evanrs@gmail.com",
"name": "Evan Schneider"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/evanrs/thin-tree/issues"
},
"homepage": "https://github.com/evanrs/thin-tree",
"dependencies": {
"lodash": "^3.1.0"
},
"bundledDependencies": [
"lodash"
],
"devDependencies": {
"chai": "^1.9.1",
"gulp": "^3.8.7",
"gulp-browserify": "^0.5.0",
"gulp-load-plugins": "^0.6.0",
"gulp-util": "^3.0.1",
"gulp-watch": "^0.7.0",
"mocha": "^1.21.4",
"yargs": "^1.3.1"
}
}