-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.85 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.85 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
{
"name": "@5app/memoize",
"version": "2.0.0",
"description": "Memoize decorator",
"main": "dist/index.js",
"type": "module",
"files": [
"dist/*"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "is-ci || husky install",
"lint": "eslint ./",
"lint-fix": "npm run lint -- --fix",
"lint-diff": "LIST=`git diff-index --name-only HEAD | grep '.*\\.[tj]s$';`; if [ \"$LIST\" ]; then eslint $LIST; fi",
"precommit-msg": "echo 'Running pre-commit checks... (skip using --no-verify)' && exit 0",
"test": "npm run lint && npm run build && npm run spec",
"spec": "nyc mocha test/spec/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/5app/memoize.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/5app/memoize/issues"
},
"homepage": "https://github.com/5app/memoize#readme",
"devDependencies": {
"@5app/prettier-config": "^1.0.4",
"@5app/semantic-release-config": "^1.1.0",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@tsconfig/node16-strictest-esm": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"eslint": "^8.36.0",
"eslint-config-5app": "^0.19.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3",
"semantic-release": "^20.1.1",
"typescript": "^5.0.2"
},
"release": {
"extends": "@5app/semantic-release-config"
},
"prettier": "@5app/prettier-config",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
2,
"never",
[
"start-case",
"pascal-case"
]
],
"scope-case": [
0
]
}
}
}