-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "tree-surgeon",
"version": "0.2.0",
"description": "Tools for editing tree structures using a relational model",
"main": "tree-surgeon.js",
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js || exit 0"
},
"repository": {
"type": "git",
"url": "https://github.com/i-e-b/node-tree-surgeon.git"
},
"keywords": [
"tree",
"relational",
"edit",
"transform",
"data"
],
"author": "ieb",
"license":"BSD-3-Clause",
"licenses": [
{
"type": "BSD",
"url": "https://github.com/i-e-b/node-tree-surgeon/blob/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/i-e-b/node-tree-surgeon/issues"
},
"homepage": "https://github.com/i-e-b/node-tree-surgeon",
"devDependencies": {
"chai": "3.5.0",
"coveralls": "2.11.9",
"istanbul": "0.4.3",
"mocha": "2.4.5",
"mocha-lcov-reporter": "1.2.0"
},
"dependencies": { }
}