This repository has been archived by the owner on Nov 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.49 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
{
"name": "unexpected-generator",
"version": "0.3.0",
"description": "A plugin for unexpected providing support for generators and iterators",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"build": "mkdir -p dist && node_modules/.bin/babel unexpectedGenerator.js --out-file dist/index.js",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gertsonderby/unexpected-generator.git"
},
"keywords": [
"assertion",
"test",
"assert",
"generator",
"iterator"
],
"author": "Gert Sønderby",
"license": "MIT",
"bugs": {
"url": "https://github.com/gertsonderby/unexpected-generator/issues"
},
"homepage": "https://github.com/gertsonderby/unexpected-generator#readme",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.3",
"husky": "^8.0.1",
"jest": "^29.1.2",
"lint-staged": "^12.5.0",
"prettier": "^2.7.1",
"unexpected": "^13.0.1"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"setupFilesAfterEnv": [
"./setupFramework"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 0
}
}
}
}