-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.11 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
{
"name": "find-ancestors",
"version": "2.0.1",
"description": "Recursively find and return a nested node and all its ancestors (parents) from a nested data structure (i.e. tree)",
"main": "index.js",
"scripts": {
"release": "npm version ${BUMP:-\"patch\"} --no-git-tag-version && git add package.json && git commit -m \":octocat: Bump to $(cat package.json | json version)\" && git tag $(cat package.json | json version) && git push && git push --tags && npm publish",
"test": "mocha",
"tdd": "npm test -- --watch"
},
"keywords": [
"array",
"list",
"nested",
"elements",
"tree",
"parents",
"ancestors"
],
"repository": "alferov/find-ancestors",
"devDependencies": {
"json": "^9.0.3",
"chai": "^3.2.0",
"eslint": "^1.4.1",
"mocha": "^2.3.0"
},
"author": {
"name": "Philipp Alferov",
"email": "[email protected]"
},
"engines": {
"node": ">=0.10.0"
},
"license": "MIT",
"dependencies": {
"lodash.assign": "^4.0.6",
"lodash.isarray": "^4.0.0",
"lodash.isfunction": "^3.0.8",
"lodash.isplainobject": "^4.0.3"
}
}