generated from 5app/package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.53 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
{
"name": "@5app/esm-helpers",
"version": "0.0.3",
"description": "ESM Helper Utility functions",
"main": "index.js",
"type": "module",
"files": [
"index.js"
],
"scripts": {
"prepare": "is-ci || husky install",
"lint": "eslint ./",
"lint-fix": "npm run lint -- --fix",
"lint-diff": "LIST=`git diff-index --name-only HEAD | grep '.*\\.js$';`; if [ \"$LIST\" ]; then eslint $LIST; fi",
"precommit-msg": "echo 'Running pre-commit checks... (skip using --no-verify)'",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/5app/esm-helpers.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/5app/esm-helpers/issues"
},
"homepage": "https://github.com/5app/esm-helpers#readme",
"devDependencies": {
"@5app/semantic-release-config": "^1.1.0",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"eslint": "^8.32.0",
"eslint-config-5app": "^0.19.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"prettier": "^2.8.3",
"pretty-quick": "^3.1.3",
"semantic-release": "^21.0.0"
},
"publishConfig": {
"access": "public"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
2,
"never",
[
"start-case",
"pascal-case"
]
]
}
},
"prettier": "@5app/prettier-config",
"release": {
"extends": "@5app/semantic-release-config"
},
"dependencies": {
"@5app/prettier-config": "^1.0.4"
}
}