-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 894 Bytes
/
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
{
"name": "digital-engagement-platform-frontend-tests",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@types/jest": "^27.0.2",
"del": "^2.2.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-jest": "^4.0.3",
"gulp-rollup": "^2.17.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-watch": "^4.3.5",
"jest-cli": "^24.9.0",
"rollup": "^2.28.2",
"rollup-stream": "^1.24.1",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
},
"dependencies": {
"lodash": "^4.17.0"
},
"jest": {
"testRegex": "((\\.|/*.)(spec))\\.js?$",
"verbose": true
}
}