-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 887 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 887 Bytes
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
{
"name": "treewithpath",
"version": "2.0.0",
"description": "JavaScript library for working with trees. The main difference from other libraries is that here access to nodes occurs through paths, paths similar to paths in the file systems",
"main": "treewithpath.js",
"scripts": {
"test": "node_modules/.bin/mocha",
"generate-docs": "node_modules/.bin/jsdoc --configure jsdoc.json --verbose; mv ./docs/treewithpath/* ./docs; rm -rf ./docs/treewithpath"
},
"keywords": [
"tree"
],
"author": "Maxim Leshchenko",
"license": "MIT",
"homepage": "https://maksalees.github.io/TreeWithPath/2.0.0/index.html",
"types": "./treewithpath.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/maksalees/TreeWithPath.git"
},
"devDependencies": {
"braintree-jsdoc-template": "^3.3.0",
"jsdoc": "^3.6.7",
"mocha": "^9.0.2"
}
}