-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.76 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
55
56
57
58
59
60
61
62
63
64
{
"name": "deep-iterator",
"version": "1.1.0",
"description": "Deep iteration of any object or iterable collection.",
"main": "./lib/deep-iterator.js",
"jsnext:main": "src/index.js",
"module": "es/index.js",
"scripts": {
"clean": "rimraf lib",
"transpile": "babel --source-maps inline src --out-dir lib",
"build": "npm run clean && npm run transpile",
"prepublish": "npm run build",
"commit": "git-cz",
"commita": "git add . && git status -s && git-cz",
"lint": "eslint src test",
"cover": "babel-node $(npm bin)/isparta cover _mocha -- \"test/{unit,integration}/**/*.test.js\"",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"test": "mocha \"test/{unit,integration}/**/*.test.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/couralex/deep-iterator.git"
},
"keywords": [
"iterator",
"generator",
"deep",
"nested",
"recursive",
"traverse",
"walk",
"dfs",
"bfs",
"object"
],
"author": "couralex <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/couralex/deep-iterator/issues"
},
"homepage": "https://github.com/couralex/deep-iterator#readme",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"chai": "^3.5.0",
"commitizen": "^2.9.5",
"coveralls": "^2.11.15",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^3.13.0",
"isparta": "^4.0.0",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.2.0",
"rimraf": "^2.5.4"
},
"dependencies": {
"babel-runtime": "^6.20.0"
}
}