-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
54 lines (54 loc) · 1.18 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
{
"name": "scs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.8.4",
"dedent": "0.7.0",
"evomaster-client-js": "file:../../evomaster-client-js",
"jest": "^24.9.0",
"superagent": "5.2.2",
"supertest": "4.0.2",
"rimraf": "^3.0.0"
},
"scripts": {
"test": "jest --coverage",
"em:run": "node instrumented/em/em-main.js",
"em:build": "rimraf instrumented && babel src -d instrumented/src --copy-files && babel em -d instrumented/em --copy-files"
},
"babel": {
"only": [
"src"
],
"plugins": [
"module:evomaster-client-js"
]
},
"jest": {
"testEnvironment": "node",
"testRegex": "em/.*Test\\.(js|jsx|ts|tsx)$",
"collectCoverageFrom": [
"src/**/*.(js|jsx|ts|tsx)"
],
"coverageReporters": [
"json",
"html",
"json-summary"
],
"transformIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/tests/",
"<rootDir>/check/",
"<rootDir>/build/",
"<rootDir>/em"
]
}
}