-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.35 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
41
42
43
44
45
46
47
{
"name": "gedcomx-fs-js",
"version": "2.0.0",
"description": "JavaScript library for FamilySearch extensions to the GEDCOM X spec.",
"main": "src/index.js",
"scripts": {
"test": "mocha",
"docs": "jsdoc -c jsdoc.json",
"coverage": "istanbul cover --report lcovonly _mocha -- --recursive && codecov",
"prepublish": "npm run build",
"build": "rm -rf dist && npm run build:dev && npm run build:min && npm run build:full",
"build:dev": "webpack --output-filename gedcomx-fs.js",
"build:min": "webpack --output-filename gedcomx-fs.min.js --optimize-minimize",
"build:full": "webpack --config webpack.full.config.js --optimize-minimize"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rootsdev/gedcomx-fs-js.git"
},
"keywords": [
"gedcomx",
"familysearch",
"genealogy"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/rootsdev/gedcomx-fs-js/issues"
},
"files": [
"src",
"dist"
],
"homepage": "https://github.com/rootsdev/gedcomx-fs-js#readme",
"devDependencies": {
"chai": "^3.5.0",
"chai-json-schema": "^1.4.0",
"codecov": "^1.0.1",
"gedcomx-fs-json-schema": "^1.0.0",
"gedcomx-js": "^2.6.0",
"ink-docstrap": "^1.3.0",
"istanbul": "^0.4.5",
"jsdoc": "3.4.x",
"mocha": "^3.1.2",
"webpack": "^1.13.3"
}
}