-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.44 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
{
"name": "jest-serializer-functions",
"description": "Jest serializer for functions",
"repository": "https://github.com/darkyndy/jest-serializer-functions",
"license": "MIT",
"private": false,
"main": "lib/index.js",
"author": "darkyndy",
"dependencies": {},
"devDependencies": {
"@babel/cli": "7.5.5",
"@babel/core": "7.5.5",
"@babel/preset-env": "7.5.5",
"babel-jest": "24.9.0",
"codecov": "3.5.0",
"eslint": "6.2.2",
"jest": "24.9.0",
"rimraf": "3.0.0",
"sinon": "7.4.1"
},
"peerDependencies": {},
"scripts": {
"build": "npm ci && npm run lint && npm run test-coverage && npm run compile && npm run test-e2e",
"compile": "rimraf lib && babel src --out-dir lib",
"lint": "eslint ./src",
"postinstall": "node ./scripts/postinstall.js || exit 0",
"prepublishOnly": "npm run build",
"report-coverage": "codecov",
"test": "jest --no-cache --config=./config/jest-ut.json",
"test-e2e": "jest --no-cache --config=./config/jest-e2e.json",
"test-e2e-latest": "npm run compile && npm run test-e2e",
"test-e2e-watch": "npm run test-e2e -- --watch",
"test-watch": "npm run test -- --watch",
"test-coverage": "npm run test -- --coverage"
},
"keywords": [
"jest",
"jest-serializer",
"jest-serializer-functions",
"serializer",
"snapshot",
"snapshotSerializer",
"function"
],
"files": [
"lib",
"scripts"
],
"version": "1.0.6"
}