-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.26 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.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
{
"name": "sandbox-javascript",
"version": "2.0.0",
"description": "JavaScript docker sandbox",
"directories": {
"test": "test"
},
"scripts": {
"test": "export $(cat test/.test | xargs) && ./node_modules/jest-cli/bin/jest.js --collect-coverage --coverageDirectory=./test-results/jest && open -a 'Google Chrome' ./test-results/jest/lcov-report/index.html",
"test-ci": "export $(cat test/.test | xargs) && ./node_modules/jest-cli/bin/jest.js --forceExit --ci --collect-coverage --coverageDirectory=./test-results/jest",
"test-dev": "export $(cat test/.test | xargs) && ./node_modules/jest-cli/bin/jest.js --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/redsift/sandbox-javascript"
},
"keywords": [
"jest"
],
"dependencies": {
"nanomsg": "^4.2.0"
},
"devDependencies": {
"jest": "27.4.7",
"jest-cli": "26.0.1",
"jest-junit": "10.0.0",
"uuid": "8.3.2"
},
"jest": {
"testRegex": "test/(.*)\\.test\\.js",
"verbose": true,
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/node_modules/"
],
"coverageReporters": [
"text",
"lcov",
"cobertura",
"clover"
],
"collectCoverageFrom": [
"root/usr/bin/redsift/*.js"
]
}
}