-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 751 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 751 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
{
"name": "treestruct",
"description": "Data structure for convenient data access, manipulation and transformation in JavaScript",
"version": "0.0.4",
"main": "src/treestruct.js",
"author": {
"name": "Ivo Nellis",
"email": "ivo.nellis@gmail.com"
},
"repository": {
"type": "git",
"url": "git@github.com:picco/treestruct.git"
},
"scripts": {
"test": "mocha src/test",
"test-cov": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec src/test && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"coveralls": "^2.11.6",
"jshint": "^2.9.1",
"mocha": "^2.4.5"
}
}