-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
56 lines (56 loc) · 1.46 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
{
"name": "snapshotter",
"version": "4.0.0",
"description": "Snapshot testing for Tape",
"main": "dist/snapshotter.js",
"scripts": {
"build": "rm -rf dist && BABEL_ENV=dev babel src --ignore \"**/*.test.js\" --out-dir dist",
"lint": "eslint .",
"preversion": "BABEL_ENV=dev npm run lint && npm test",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags",
"test": "npm run lint && babel-node test/snapshotter.js"
},
"author": "Chris Lewis",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cdlewis/snapshotter.git"
},
"dependencies": {
"enzyme-to-json": "3.1.3",
"jest-diff": "^18.1.0",
"jest-file-exists": "^17.0.0",
"lodash": "^4.0.0",
"readline-sync": "^1.4.6"
},
"peerDependencies": {
"tape": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-transform-react-jsx": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-eslint": "^10.1.0",
"core-js": "^3.6.4",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"tape": "^5.0.0"
},
"snapshotter": {
"snapshotPath": "./test/snapshots"
},
"prettier": {
"singleQuote": true
},
"engines": {
"node": ">=8.0.0"
}
}