-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
76 lines (76 loc) · 2.04 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
67
68
69
70
71
72
73
74
75
76
{
"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 <[email protected]> (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://[email protected]/chaijs/get-func-name.git"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"pretest": "npm run lint",
"test": "npm run test:node && npm run test:browser && npm run upload-coverage",
"test:browser": "karma start karma.conf.cjs --singleRun=true",
"test:node": "istanbul cover _mocha",
"upload-coverage": "lcov-result-merger 'coverage/**/lcov.info' | coveralls; exit 0"
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg"
}
},
"eslintConfig": {
"extends": [
"strict/es6"
],
"env": {
"es6": true
},
"globals": {
"HTMLElement": false
},
"rules": {
"complexity": 0,
"max-statements": 0,
"prefer-arrow-callback": "off"
}
},
"dependencies": {},
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"eslint-config-strict": "^14.0.1",
"eslint-plugin-filenames": "^1.1.0",
"ghooks": "^2.0.4",
"istanbul": "^0.4.5",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"lcov-result-merger": "^3.1.0",
"mocha": "^9.1.2",
"semantic-release": "^18.0.0",
"validate-commit-msg": "^2.3.1"
},
"engines": {
"node": ">= 12"
},
"version": "3.0.0"
}