-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.4 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
48
{
"name": "gedcomx-js",
"version": "2.8.0",
"description": "JavaScript object model for GEDCOM X",
"main": "src/index.js",
"scripts": {
"test": "mocha && npm run test:core && npm run test:rs && npm run test:records && npm run test:atom",
"test:core": "mocha test/core/*.js",
"test:rs": "mocha test/rs/*.js",
"test:records": "mocha test/records/*.js",
"test:atom": "mocha test/atom/*.js",
"docs": "jsdoc -c jsdoc.json",
"prepublish": "npm run build",
"coverage": "istanbul cover --report lcovonly _mocha -- --recursive && codecov",
"build": "mkdir -p dist && npm run build:full && npm run build:min",
"build:full": "webpack --output-filename gedcomx.js",
"build:min": "webpack --output-filename gedcomx.min.js --optimize-minimize"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-json-schema": "^1.3.0",
"codecov": "^1.0.1",
"gedcomx-json-schema": "^1.5.0",
"ink-docstrap": "^1.3.0",
"istanbul": "^0.4.3",
"jsdoc": "^3.4.0",
"mocha": "^2.4.5",
"webpack": "^1.13.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rootsdev/gedcomx-js.git"
},
"files": [
"src",
"dist"
],
"keywords": [
"gedcomx",
"genealogy"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/rootsdev/gedcomx-js/issues"
},
"homepage": "https://github.com/rootsdev/gedcomx-js#readme"
}