-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.52 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.52 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
{
"name": "get-func-name",
"description": "Utility for getting a function's name for node and the browser",
"keywords": [
"get-func-name",
"chai util"
],
"license": "MIT",
"author": "Jake Luer <jake@alogicalparadox.com> (http://alogicalparadox.com)",
"contributors": [
"Keith Cirkel (https://github.com/keithamus)",
"Lucas Fernandes da Costa (https://github.com/lucasfcosta)",
"Grant Snodgrass (https://github.com/meeber)",
"Lucas Vieira (https://github.com/vieiralucas)",
"Aleksey Shvayka (https://github.com/shvaikalesh)"
],
"files": [
"index.js"
],
"type": "module",
"main": "./index.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/chaijs/get-func-name.git"
},
"scripts": {
"lint": "eslint .",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"pretest": "npm run lint",
"test": "npm run test:node && npm run test:browser",
"test:browser": "karma start karma.conf.cjs --singleRun=true",
"test:node": "c8 mocha"
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg"
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"c8": "^11.0.0",
"eslint": "^10.1.0",
"ghooks": "^2.0.4",
"globals": "^17.4.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-mocha": "^2.0.1",
"mocha": "^11.7.5",
"semantic-release": "^25.0.3",
"validate-commit-msg": "^2.3.1"
},
"engines": {
"node": ">= 12"
},
"version": "3.0.0"
}