-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.48 KB
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
83
{
"name": "@codistica/husky-hooks-handlers",
"version": "1.0.1",
"publishConfig": {
"access": "public"
},
"description": "Codistica's custom Husky hooks handlers.",
"keywords": [
"codistica, husky, handlers, commit, push, message, test, config, preset, presets, plugin, plugins"
],
"author": {
"name": "Codistica",
"email": "info@codistica.com",
"url": "https://github.com/codistica"
},
"contributors": [
{
"name": "Ernesto Stifano",
"email": "ernesto.stifano@codistica.com",
"url": "https://github.com/ernestostifano"
},
{
"name": "Javier Monguilo",
"email": "javier.monguilo@codistica.com",
"url": "https://github.com/jmonguilo"
}
],
"homepage": "https://www.codistica.com",
"license": "MIT",
"directories": {
"lib": "./lib",
"test": "./lib/__tests__"
},
"files": [
"lib",
"!**/__tests__",
"!*.test.*",
"./types"
],
"repository": {
"type": "git",
"url": "https://github.com/codistica/husky-hooks-handlers.git"
},
"bugs": {
"url": "https://github.com/codistica/husky-hooks-handlers/issues"
},
"browserslist": [
"since 2015"
],
"engines": {
"node": ">=10.0.0"
},
"bin": {
"codistica-husky-hooks-handlers": "./lib/bin/codistica-husky-hooks-handlers.js"
},
"scripts": {
"babel:lib": "cross-env NODE_ENV=production cross-env NPM_CONFIG_ES_MODULES=false babel ./src --out-dir ./lib --copy-files",
"build": "yarn run clean && yarn run build:lib",
"build:lib": "yarn run babel:lib",
"clean": "yarn run clean:lib",
"clean:lib": "rimraf ./lib",
"coverage": "nyc yarn run test",
"prepack": "yarn run build",
"test": "mocha \"./lib/__tests__/*.test.js\"",
"test:quick": "yarn run build:lib && yarn run test",
"uninstall": "yarn run clean && rimraf ./node_modules"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@comandeer/babel-plugin-banner": "^5.0.0",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"husky": "^4.2.5",
"mocha": "^7.1.1",
"mock-fs": "^4.11.0",
"nyc": "^15.0.1",
"rimraf": "^3.0.2"
}
}