-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.2 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"version": "1.1.1",
"license": "MIT",
"name": "json-file-handler",
"description": "A package for reading and writing JSON files",
"author": "Sebastián Altamirano",
"keywords": [
"json",
"promise",
"promises",
"async",
"await",
"file",
"read",
"write",
"join",
"merge"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=v10.12.0"
},
"repository": "github:sebastian-altamirano/json-file-handler",
"bugs": "https://github.com/sebastian-altamirano/json-file-handler/issues",
"husky": {
"hooks": {
"pre-commit": "npm run format && npm run lint && npm test && npm run build",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"cm": "npx git-cz",
"format": "pretty-quick --staged",
"lint": "eslint . --ext .ts",
"test": "nyc ts-node node_modules/jasmine/bin/jasmine.js JASMINE_CONFIG_PATH=jasmine.json",
"build": "tsc",
"docs": "typedoc --out ./docs && touch ./docs/.nojekyll",
"postversion": "npm run docs && npx pretty-quick docs"
},
"dependencies": {
"deepmerge": "^4.2.2"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jasmine": "^3.5.9",
"@types/node": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"commitizen": "^4.0.4",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jasmine": "^4.1.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-sonarjs": "^0.5.0",
"eslint-plugin-tsdoc": "^0.2.4",
"husky": "^4.2.5",
"jasmine": "^3.5.0",
"nyc": "^15.0.1",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"semantic-release": "^17.0.4",
"ts-node": "^8.8.2",
"typedoc": "^0.17.4",
"typescript": "^3.8.3"
}
}