-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
61 lines (61 loc) · 1.33 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
{
"name": "@neovici/nullxlsx",
"version": "3.1.0",
"description": "Minimal xlsx file and zip archive generator in javascript",
"keywords": [
"xlsx"
],
"repository": {
"type": "git",
"url": "git+https://github.com/neovici/nullxlsx.git"
},
"license": "MIT",
"author": "jokedst@gmail.com",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint --report-unused-disable-directives --cache --ext .js .",
"start": "wds",
"test": "wtr --coverage",
"test:watch": "wtr --watch"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/npm",
"@semantic-release/git"
],
"branch": "master"
},
"publishConfig": {
"access": "public"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^18",
"@commitlint/config-conventional": "^18",
"@neovici/cfg": "^1.41.0",
"@open-wc/testing": "^3.0.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"husky": "^4.2.3",
"lit-html": "^2.0.0",
"semantic-release": "^22.0.0",
"sinon": "^17"
},
"type": "module"
}