-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.27 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": "tree-walk",
"version": "0.3.0",
"author": "Patrick Dubroy <[email protected]> (http://dubroy.com)",
"license": "MIT",
"dependencies": {
"util-extend": "^1.0.1"
},
"devDependencies": {
"browserify": "^5.9.1",
"dirwatch": "^1.1.0",
"eslint": "^0.17.1",
"tap-spec": "^1.0.1",
"tape": "^2.13.4",
"underscore": "^1.8.2",
"watchify": "^1.0.1"
},
"scripts": {
"build": "browserify -d -s tree-walker -o dist/tree-walker-bundle.js index.js",
"watch": "watchify -v -d -s tree-walker -o dist/tree-walker-bundle.js index.js",
"test": "tape test/*.js | tap-spec",
"test-continuous": "dirwatch *.js test/*.js -c 'which tput && tput clear; date; tape test/*.js' | tap-spec",
"prepublish": "npm run build && npm run test && npm run lint",
"lint": "eslint *.js lib test"
},
"description": "Helpers for traversing, inspecting, and transforming arbitrary trees.",
"main": "index.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/pdubroy/tree-walk.git"
},
"keywords": [
"traverse",
"walk",
"tree",
"recursive"
],
"bugs": {
"url": "https://github.com/pdubroy/tree-walk/issues"
},
"homepage": "https://github.com/pdubroy/tree-walk"
}