-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "workdates",
"version": "0.0.0-semantically-released",
"description": "Date manipulation while taking workdays into account.",
"main": "src/index.js",
"scripts": {
"commit": "git-cz",
"test": "mocha src/index.test.js -w",
"test:single": "mocha src/index.test.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/slysterous/workdates.git"
},
"keywords": [
"date",
"workday",
"date-manipulation"
],
"author": "Christos Petropoulos <chrispetropoulos91@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/slysterous/workdates/issues"
},
"homepage": "https://github.com/slysterous/workdates#readme",
"dependencies": {
"moment": "2.19.3"
},
"devDependencies": {
"chai": "4.0.2",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.0.0",
"mocha": "3.4.2",
"semantic-release": "^6.3.6"
}
}