forked from cdlewis/snapshotter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.41 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
{
"name": "snapshotter",
"version": "1.0.4",
"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": "^1.4.5",
"jest-diff": "^18.1.0",
"jest-file-exists": "^17.0.0",
"lodash": "^4.0.0",
"readline-sync": "^1.4.6"
},
"peerDependencies": {
"tape": "^4.0.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"enzyme": "^2.4.1",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"react": "~15.4.0",
"react-addons-test-utils": "^15.4.2",
"react-dom": "~15.4.0",
"tape": "^4.0.0"
},
"snapshotter": {
"snapshotPath": "./test/snapshots"
}
}