-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
54 lines (54 loc) · 1.36 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
50
51
52
53
54
{
"name": "recursive-iterator",
"version": "3.3.0",
"description": "It iterates through a graph or a tree recursively",
"homepage": "https://github.com/nervgh/recursive-iterator",
"license": "MIT",
"main": "src/RecursiveIterator.js",
"repository": {
"type": "git",
"url": "https://github.com/nervgh/recursive-iterator.git"
},
"author": {
"name": "nerv",
"url": "https://github.com/nervgh"
},
"engines": {
"node": ">=6"
},
"scripts": {
"ensure-code-style": "node_modules/.bin/standard --fix ./src/*.js ./test/*.js",
"bundle": "webpack",
"test": "mocha",
"test-cov": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- --reporter dot",
"test-travis": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly"
},
"devDependencies": {
"babel-core": "~6.23.1",
"babel-loader": "~6.3.2",
"babel-preset-es2016": "~6.22.0",
"istanbul": "^0.4.5",
"mocha": "~3.2.0",
"standard": "~10.0.2",
"uglify-js": "git+https://github.com/mishoo/UglifyJS2.git#harmony-v2.8.5",
"uglifyjs-webpack-plugin": "^0.3.1",
"webpack": "~2.2.1"
},
"keywords": [
"js",
"javascript",
"graph",
"vertex",
"walk",
"walker",
"recursive",
"recursion",
"iterator",
"iteratate",
"traverse",
"traversal",
"object",
"tree",
"json"
]
}