-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.55 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
{
"name": "sinon-helpers",
"description": "Create easily configurable sinon stubs that mimic constructors and keep track of their instances",
"author": "Lukas Taegert <lukas.taegert@tngtech.com>",
"license": "Apache-2.0",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"engines": {
"node": ">=10.0.0"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/TNG/sinon-helpers.git"
},
"keywords": [
"sinon",
"constructor",
"stub",
"mock",
"spy"
],
"bugs": {
"url": "https://github.com/TNG/sinon-helpers/issues"
},
"homepage": "https://github.com/TNG/sinon-helpers#readme",
"peerDependencies": {
"sinon": ">=1.15.0"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-angular": "^19.7.1",
"chai": "^5.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-tree-shaking": "^1.12.2",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"mocha": "^11.1.0",
"prettier": "^3.5.1",
"rollup": "^4.34.8",
"semantic-release": "^24.2.3",
"sinon": "^16.1.3"
},
"scripts": {
"build": "rollup -c",
"test": "npm run build && mocha",
"lint": "eslint --fix *.js src/**/*.js test/**/*.js",
"prepare": "husky install && npm run build",
"semantic-release": "semantic-release"
},
"version": "0.0.0-development"
}