-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.59 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
{
"name": "jest-auto-snapshots",
"version": "3.0.1",
"description": "Fully automated Jest snapshot tests for React components",
"main": "./dist/index.js",
"repository": "git@github.com:icd2k3/jest-auto-snapshots.git",
"author": "JUSTIN SCHRADER <icd2k3@gmail.com>",
"license": "MIT",
"engines": {
"node": ">= 8.11.3"
},
"peerDependencies": {
"jest": ">= 21.2.1",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"dependencies": {
"caller-callsite": "^3.0.0",
"colors": "^1.3.1",
"react-docgen": "^2.21.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.6.0",
"coveralls": "^3.0.2",
"eslint": "^5.2.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"esprima": "^4.0.1",
"eval": "^0.1.2",
"jest": "23.6.0",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-test-renderer": "^16.5.0"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "babel src --out-dir dist",
"install-hooks": "git config core.hooksPath .githooks",
"test": "jest",
"lint": "./node_modules/.bin/eslint './src/**/*.js' './examples/**/*.js' './examples/**/*.jsx'",
"travis": "jest && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
}
}