-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.26 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.26 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "babel-jest-assertions",
"version": "0.1.0",
"description": "Babel plugin that adds the number of assertions found in each test with expect.assertions(n)",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "babel src -d dist --ignore *.test.js",
"contributor": "all-contributors add",
"contributor:gen": "all-contributors generate",
"lint": "eslint src",
"lint:fix": "yarn lint -- --fix",
"precommit": "lint-staged",
"prepublish": "yarn build",
"prettier": "prettier 'src/**/*.js' --write --single-quote=true --print-width=120",
"test": "jest",
"test:coverage": "yarn test -- --coverage",
"test:report": "codecov",
"test:watch": "yarn test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattphillips/babel-jest-assertions.git"
},
"keywords": [
"babel",
"jest",
"plugin",
"assertions",
"expect",
"test"
],
"author": "Matt Phillips <matt@mattphillips.io> (mattphillips.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattphillips/babel-jest-assertions/issues"
},
"homepage": "https://github.com/mattphillips/babel-jest-assertions#readme",
"devDependencies": {
"all-contributors-cli": "^4.4.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-jest": "^21.0.2",
"babel-plugin-tester": "^4.0.0",
"codecov": "^2.3.0",
"eslint": "^4.6.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.0.2",
"husky": "^0.14.3",
"jest": "^21.0.2",
"jest-each": "^0.3.1",
"jest-extended": "^0.5.0",
"lint-staged": "^4.1.3",
"prettier": "^1.6.1"
},
"lint-staged": {
"*.js": [
"yarn prettier",
"git add"
]
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/fixtures/"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"setupTestFrameworkScriptFile": "jest-extended"
},
"dependencies": {
"babel-generator": "^6.26.0",
"babel-types": "^6.26.0"
}
}