forked from khaledosman/timeular-cli
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 1.95 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
{
"name": "@4ndrs.xyz/timeular-cli",
"version": "2.0.0-SNAPSHOT",
"description": "forked from khaledosman/timeular-cli by Khaled Osman",
"main": "timeular.js",
"scripts": {
"test": "npx jest",
"coverage": "npm test -- --coverage --reporters=\"jest-junit\"",
"coverage:ci": "npm test -- --ci --coverage --reporters=\"jest-junit\" && coveralls < coverage/lcov.info",
"commit": "npx git-cz",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"bin": {
"timeular": "timeular.js"
},
"repository": {
"type": "git",
"url": "https://github.com/andreassiegel/timeular-cli.git"
},
"keywords": [
"timeular",
"cli",
"nodejs",
"timeularjs"
],
"author": "Andreas Siegel",
"license": "ISC",
"bugs": {
"url": "https://github.com/andreassiegel/timeular-cli/issues"
},
"homepage": "https://github.com/andreassiegel/timeular-cli#readme",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"child_process": "^1.0.2",
"coveralls": "^3.0.11",
"cz-conventional-changelog": "^3.1.0",
"husky": "^4.2.3",
"jest": "^25.3.0",
"jest-extended": "^0.11.5",
"jest-junit": "^10.0.0",
"snyk": "^1.316.1",
"standard": "^14.3.1"
},
"dependencies": {
"axios": "^0.22.0",
"chalk": "^4.0.0",
"clui": "^0.3.6",
"dotenv": "^8.2.0",
"enquirer": "^2.3.5",
"http-status": "^1.4.2",
"lodash": "^4.17.15",
"yargs": "^16.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.jsx?$",
"setupFilesAfterEnv": [
"jest-extended"
]
},
"husky": {
"hooks": {
"pre-commit": "npx standard --fix",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"snyk": true
}