-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.93 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
{
"name": "k-frame",
"version": "1.0.0",
"private": true,
"description": "Docs for k-frame",
"main": "index.js",
"directories": {
"doc": "docs"
},
"dependencies": {
"@babel/core": "^7.3.4",
"babel-jest": "^24.3.1",
"babel-plugin-istanbul": "^5.1.1",
"jest-haste-map": "^24.3.1",
"jest-resolve": "^24.3.1",
"json": "^9.0.6"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-async-to-generator": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.3.1",
"babel-loader": "^8.0.4",
"jest": "^24.5.0",
"lerna": "^3.13.2",
"prettier": "^1.16.4",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-hooks-testing-library": "^0.3.8",
"react-testing-library": "^6.0.0"
},
"scripts": {
"test": "jest",
"test:cov": "npm test -- --coverage",
"bootstrap": "lerna bootstrap --hoist",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krzysztofpniak/k-frame.git"
},
"author": "Krzysztof Pniak",
"license": "MIT",
"bugs": {
"url": "https://github.com/krzysztofpniak/k-frame/issues"
},
"homepage": "https://github.com/krzysztofpniak/k-frame#readme",
"jest": {
"testRegex": "(/tests/.*\\.spec.js)$",
"verbose": true,
"collectCoverageFrom": [
"packages/core/src/**/*.{js,jsx}",
"packages/sagas/src/**/*.{js,jsx}",
"packages/forms/src/**/*.{js,jsx}",
"!<rootDir>/node_modules/"
]
},
"workspaces": ["packages/*"]
}