-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.11 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
{
"name": "slt",
"version": "2.0.0",
"description": "Take care of your state",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "nodemon -w __tests__ -w ./src -e js,jsx -x npm test"
},
"author": "Alexey Frolov <[email protected]>",
"license": "MIT",
"keywords": [
"react",
"flux",
"relay",
"state",
"immutable",
"isomorphic",
"promises"
],
"devDependencies": {
"babel-jest": "^5.2.0",
"jest-cli": "^0.4.5",
"express": "^4.13.1",
"supertest": "^1.0.1",
"core-js": "^0.9.18"
},
"dependencies": {
"debug": "^2.2.0",
"immutable": "^3.7.4"
},
"repository": {
"type": "git",
"url": "[email protected]:AlexeyFrolov/slt.git"
},
"jest": {
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"es6"
],
"unmockedModulePathPatterns": [
"/lib/*",
"/src/*",
"/node_modules/",
"/data/"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/data/",
"/cms/",
"/src/"
],
"collectCoverage": false
}
}