-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.67 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
{
"name": "testing-helpers",
"version": "0.2.0",
"main": "build/index.js",
"repository": "https://github.com/lawnstarter/testing-helpers",
"author": "Michael Lefkowitz <lefkowitz.michael@gmail.com>",
"license": "MIT",
"scripts": {
"build": "babel src/index.js --out-dir build",
"cm": "git-cz",
"cm:retry": "git-cz --retry",
"prettier:debug-check": "prettier --config ./.prettierrc.js --debug-check \"{src,test}/**/*.js\"",
"preprettier:all": "yarn prettier:debug-check",
"prettier:all": "prettier --config ./.prettierrc.js --write \"{src,test}/**/*.js\"",
"generate:licenses": "license-checker --csv --customPath ./licenses/customFormat.json --out ./licenses/licenses.csv",
"lint": "eslint \"src/**/*.{js,jsx}\"",
"lint:all": "eslint --ext .js ."
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@commitlint/cli": "^9.1.2",
"@semantic-release/changelog": "3.0.4",
"@semantic-release/commit-analyzer": "6.1.0",
"@semantic-release/git": "7.0.8",
"@semantic-release/github": "5.2.10",
"@semantic-release/npm": "5.1.4",
"@semantic-release/release-notes-generator": "7.1.4",
"commitizen": "^3.1.2",
"cz-ls-commits": "^1.0.4",
"eslint-config-ls-react": "https://github.com/lawnstarter/eslint-config-ls-react#3.0.0",
"husky": "^3.1.0",
"license-checker": "25.0.1",
"pretty-quick": "1.11.1",
"semantic-release": "19.0.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "yarn lint"
}
},
"release": {
"tagFormat": "${version}",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"build/index.js",
"CHANGELOG.md",
"package.json",
"yarn.lock"
]
}
],
"@semantic-release/github"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-ls-commits"
}
},
"commitlint": {
"extends": [
"./node_modules/cz-ls-commits/commitlint"
]
}
}