-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
44 lines (44 loc) · 1.04 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
{
"name": "eventsourcemock",
"version": "1.0.1",
"description": "Mock EventSource in tests.",
"main": "./lib/index.js",
"repository": "gcedo/eventsourcemock",
"scripts": {
"flow": "flow",
"test": "jest",
"build": "babel src/ -d lib/",
"format": "prettier --write '{src,__tests__}/**/*.js'",
"prepare": "npm run build",
"precommit": "lint-staged"
},
"author": "Edoardo Colombo <edo.gcolombo@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^2.8.2",
"flow-bin": "^0.47.0",
"husky": "^0.13.4",
"jest": "^20.0.4",
"lint-staged": "^3.6.0",
"prettier": "^1.4.4",
"react": "^15.5.4",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4"
},
"dependencies": {},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"jest": {
"setupFiles": [
"./__test__/configJSDom.js"
]
}
}