-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 1.03 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": "gensearch",
"version": "2.4.3",
"description": "Generate search links for genealogy websites",
"repository": {
"type": "git",
"url": "https://github.com/genealogysystems/gen-search"
},
"bugs": "https://github.com/genealogysystems/gen-search/issues",
"main": "src/search.js",
"scripts": {
"test": "mocha --recursive",
"build": "npm run build:dev && npm run build:min",
"build:dev": "webpack",
"build:min": "webpack --env.production",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- --recursive",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- --recursive && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"prepublish": "npm test && npm run build"
},
"files": [
"src",
"dist"
],
"keywords": [
"genealogy"
],
"author": "Justin York",
"license": "MIT",
"devDependencies": {
"bannerjs": "^1.0.5",
"coveralls": "2.11.2",
"istanbul": "0.3.8",
"mocha": "2.2.1",
"webpack": "^2.3.3"
}
}