-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.01 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
{
"name": "@netatwork/spy",
"version": "1.2.0",
"description": "Mock the dependencies in unit tests with this proxy-based spy implementation",
"main": "dist/index.js",
"typings": "dist/types/index",
"scripts": {
"prebuild": "rimraf dist & eslint . --ext .ts --cache",
"lint": "eslint . --ext .ts --cache",
"build": "tsc",
"dev": "tsc -w --preserveWatchOutput",
"test": "nyc --nycrc-path ./tests/nyc.config.js mocha --config ./tests/.mocharc.js",
"test:dev": "cross-env DEV=true nyc --nycrc-path ./tests/nyc.config.js mocha --config ./tests/.mocharc.js",
"gen:changelog": "conventional-changelog -i CHANGELOG.md -s -r 2"
},
"keywords": [
"test",
"spy"
],
"author": "Net at Work GmbH",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Netatwork-de/spy.git"
},
"bugs": {
"url": "https://github.com/Netatwork-de/spy/issues"
},
"homepage": "https://github.com/Netatwork-de/spy#readme",
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@netatwork/mocha-utils": "^2.1.4",
"@types/chai": "^4.3.9",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"chai": "^4.3.10",
"conventional-changelog-cli": "^4.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.53.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-mocha": "^10.2.0",
"husky": "^8.0.2",
"mocha": "^10.2.0",
"mocha-junit-reporter": "^2.2.1",
"nyc": "^15.1.0",
"rimraf": "^5.0.5",
"source-map-support": "^0.5.21",
"standard-version": "^9.3.0",
"ts-node": "^10.0.0",
"typescript": "^5.2.2"
},
"optionalDependencies": {
"chai": "4.x"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}