-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
63 lines (63 loc) · 1.73 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "read-gedcom",
"description": "Gedcom file reader",
"version": "0.3.2",
"main": "dist/cjs/index.js",
"module": "dist/es6/index.js",
"types": "dist/cjs/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"keywords": [
"gedcom",
"genealogy"
],
"author": "Florian Cassayre",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:arbre-app/read-gedcom.git"
},
"browserslist": [
"defaults",
"not ie 11"
],
"scripts": {
"build": "tsc -p tsconfig-build.json && tsc -p tsconfig-build-es6.json && webpack --mode production",
"build:clean": "rimraf dist && npm run build",
"docs": "typedoc --tsconfig tsconfig-build.json",
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"lint": "npx eslint src/ tests/ --ext .ts --fix",
"patch": "patch-package"
},
"devDependencies": {
"@knodes/typedoc-plugin-pages": "^0.22.5",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"browserlist": "^1.0.1",
"chai": "^4.3.6",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-standard": "^5.0.0",
"lodash": "^4.17.21",
"mocha": "^10.0.0",
"patch-package": "^6.4.7",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.8.1",
"typedoc": "^0.22.17",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
}
}