-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.94 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
{
"name": "sinon-chai-calls-assertion",
"version": "2.3.1",
"description": "A simple sinon-chai assertion to validate many aspects of stub calls",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"lint": "npm run lint:format && npm run lint:style",
"prebuild": "npm run clear:build && del-cli tsconfig.tsbuildinfo",
"build": "tsc",
"test:coverage": "nyc npm test",
"test:coverage:lcovonly": "run-test-lcov",
"test": "mocha",
"prepublishOnly": "npm run build",
"clear": "npm run clear:build && npm run clear:modules",
"clear:build": "del-cli ./dist",
"clear:modules": "del-cli ./node_modules",
"preaction:verify:update-modules": "npm run action:verify:update-modules:check",
"action:verify:update-modules": "npm run action:verify:update-modules:reinstall && npm run action:verify:update-modules:clean",
"action:verify:update-modules:clean": "del-cli .check",
"lint:fix": "npm run lint:format:fix && npm run lint:style:fix",
"lint:format": "prettier --check '{src,test}/**/*.ts'",
"lint:format:fix": "prettier --write '{src,test}/**/*.ts'",
"lint:style": "eslint '**/*.ts'",
"lint:style:fix": "eslint '**/*.ts' --fix",
"release:update-changelog": "codibre-confs update-changelog",
"postversion": "npm run release:update-changelog"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Farenheith/sinon-chai-calls-assertion.git"
},
"keywords": [
"sinon",
"chai",
"assertions",
"calls"
],
"author": "Farenheith",
"license": "MIT",
"bugs": {
"url": "https://github.com/Farenheith/sinon-chai-calls-assertion/issues"
},
"homepage": "https://github.com/Farenheith/sinon-chai-calls-assertion#readme",
"devDependencies": {
"@codibre/confs": "0.0.5",
"chai": "^4.2.0",
"eslint": "^7.2.0",
"mocha": "^8.0.1",
"prettier": "^2.0.5",
"sinon": "^9.0.1"
},
"dependencies": {
"colors": "^1.4.0"
}
}