-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.16 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
{
"private": true,
"author": "Alican Çubukçuoğlu <[email protected]>",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"test": "run-p test:*",
"test:jest": "jest",
"test:prettier": "prettier --list-different \"**/*.js\"",
"test:eslint": "eslint \"packages/**/*.js\"",
"test:flow": "flow check",
"test-ci": "run-s test test-ci:codecov",
"test-ci:codecov": "codecov"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"transformIgnorePatterns": []
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.46",
"@babel/core": "^7.0.0-beta.46",
"@babel/node": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.46",
"@babel/preset-flow": "^7.0.0-beta.46",
"@babel/preset-react": "^7.0.0-beta.46",
"@babel/preset-stage-2": "^7.0.0-beta.46",
"babel-core": "^7.0.0-0",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.0.1",
"codecov": "^3.0.2",
"eslint": "^4.19.1",
"eslint-plugin-flowtype": "^2.49.3",
"flow-bin": "^0.74.0",
"jest": "^23.1.0",
"lerna": "^2.11.0",
"npm-run-all": "^4.1.3",
"prettier": "^1.12.1"
}
}