forked from airbnb/visx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 860 Bytes
/
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
{
"devDependencies": {
"babel-jest": "^20.0.3",
"coveralls": "^2.13.1",
"jest": "^20.0.3",
"lerna": "2.0.0-beta.38",
"react": "^15.5.4",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"regenerator-runtime": "^0.10.5"
},
"name": "@vx/vx",
"version": "0.0.1",
"description": "Low-level visualization components",
"main": "index.js",
"scripts": {
"test": "lerna exec npm install && jest"
},
"jest": {
"projects": [
"<rootDir>/packages/*"
],
"collectCoverage": true,
"coverageDirectory": "<rootDir>/coverage",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"coverageReporters": [
"text",
"lcov"
]
},
"keywords": [
"react",
"d3",
"visualization",
"vx",
"charts"
],
"author": "@hshoff",
"license": "MIT"
}