-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 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
{
"name": "strict-mocha-describers",
"version": "2.1.2",
"description": "The implementation of describers strongly oriented to the methods that will be tested",
"main": "build/strict-mocha-describers.js",
"directories": {
"bin": "build",
"test": "src",
"lib": "src"
},
"files": [
"build"
],
"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",
"prepublish": "npm run build",
"prepare": "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+https://github.com/Farenheith/strict-mocha-describers.git"
},
"author": "@Farenheith",
"license": "MIT",
"bugs": {
"url": "https://github.com/Farenheith/strict-mocha-describers/issues"
},
"homepage": "https://github.com/Farenheith/strict-mocha-describers#readme",
"devDependencies": {
"@codibre/confs": "0.0.6",
"@types/sinon-chai": "^3.2.4",
"sinon-chai": "^3.5.0"
},
"dependencies": {
"mocha": "^9.2.0"
}
}