-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (28 loc) · 828 Bytes
/
package.json
File metadata and controls
29 lines (28 loc) · 828 Bytes
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
{
"name": "phpunit-circle-ci-coverage-example",
"version": "1.0.0",
"description": "> An example repo to get started with phpUnit on a CircleCI server",
"main": "index.js",
"directories": {
"test": "tests"
},
"devDependencies": {
"jest": "^27.3.1",
"jest-junit": "^13.0.0"
},
"scripts": {
"test": "jest --ci --reporters=jest-junit --collectCoverage=true --coverageDirectory=coverage/jest --passWithNoTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danrhjones/phpunit-circle-ci-coverage-example.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/danrhjones/phpunit-circle-ci-coverage-example/issues"
},
"homepage": "https://github.com/danrhjones/phpunit-circle-ci-coverage-example#readme",
"dependencies": {
}
}