-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.65 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "redux-state-snapshot",
"version": "1.0.2",
"description": "Simple utility to help test your redux integration",
"scripts": {
"test": "jest src/*.spec.js",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tutts/redux-state-snapshot.git"
},
"keywords": [
"redux",
"state",
"snapshot",
"test",
"tests",
"testing",
"jest",
"integration"
],
"author": "Sam Tutton",
"license": "MIT",
"bugs": {
"url": "https://github.com/tutts/redux-state-snapshot/issues"
},
"homepage": "https://github.com/tutts/redux-state-snapshot#readme",
"dependencies": {
"redux-mock-store": "^1.5.3"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@pika/plugin-build-node": "0.3.12",
"@pika/plugin-build-types": "0.3.12",
"@pika/plugin-build-web": "0.3.12",
"@pika/plugin-standard-pkg": "^0.3.14",
"babel-jest": "^24.5.0",
"jest": "^24.5.0",
"prettier": "1.16.4",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0"
},
"peerDependencies": {
"jest": "^24.5.0"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg",
{
"exclude": [
"**/*.spec.js",
"**/*.js.snap"
]
}
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
],
[
"@pika/plugin-build-types"
]
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"printWidth": 120,
"semi": false
}
}