-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.45 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
55
56
57
58
59
{
"name": "jestlib",
"version": "1.0.0",
"description": "Jest Testing helpers",
"main": "build/index.js",
"repository": "https://github.com/simpleviewinc/jestlib",
"author": "Lance Tipton",
"license": "MIT",
"private": false,
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "NODE_ENV=test jest --no-cache --verbose"
},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "7.5.5",
"@babel/runtime": "^7.8.4",
"@rollup/plugin-commonjs": "^11.0.1",
"babel-jest": "24.9.0",
"jest": "24.7.1",
"jsutils": "git+https://github.com/lancetipton/jsutils.git",
"jsvalidator": "^1.2.0",
"rollup": "1.20.3",
"rollup-jest": "0.0.2",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-cleanup": "3.1.1",
"rollup-plugin-sourcemaps": "0.4.2"
},
"peerDependencies": {
"app-root-path": "2.2.1",
"jsutils": "git+https://github.com/lancetipton/jsutils.git",
"jsvalidator": "^1.2.0"
},
"jest": {
"preset": "rollup-jest",
"moduleNameMapper": {},
"transform": {
"^.+\\.js$": "babel-jest"
},
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.js?(x)"
],
"collectCoverageFrom": [
"<rootDir>/src/index.js"
],
"moduleFileExtensions": [
"js",
"json",
"jsx",
"es6"
],
"globals": {
"__DEV__": true
},
"setupFilesAfterEnv": []
}
}