-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1.19 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
{
"name": "fs-traversal",
"version": "4.1.0",
"description": "A JavaScript traversal framework for the FamilySearch Family Tree using the visitor pattern",
"main": "fs-traversal.js",
"repository": {
"type": "git",
"url": "git://github.com/genealogysystems/fs-traversal.git"
},
"author": "Genealogy Systems",
"license": "MIT",
"bugs": {
"url": "https://github.com/genealogysystems/fs-traversal/issues"
},
"homepage": "https://github.com/genealogysystems/fs-traversal",
"scripts": {
"test": "mocha",
"build": "npm run browserify && uglifyjs fs-traversal.js -o fs-traversal.min.js",
"browserify": "browserify lib/fs-traversal.js -s FSTraversal -o fs-traversal.js",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"dependencies": {
"async": "1.2.0"
},
"devDependencies": {
"browserify": "9.0.6",
"chai": "2.2.0",
"coveralls": "2.11.2",
"es6-promise": "^3.0.2",
"istanbul": "0.3.13",
"lodash": "3.6.0",
"mocha": "2.2.1",
"uglify-js": "2.4.19"
}
}