forked from airbnb/visx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.81 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
70
71
72
{
"name": "@vx/dev",
"version": "0.0.1",
"description": "Low-level visualization components",
"main": "index.js",
"scripts": {
"test": "lerna bootstrap && lerna exec npm run test",
"docs": "node ./scripts/docs/index.js",
"prepare-release": "git checkout master && git pull --rebase origin master && npm run docs && lerna updated",
"release": "npm run prepare-release && lerna publish --exact",
"lint": "eslint \"{packages,scripts}/**/*.js\"",
"lint:fix": "eslint \"{packages,scripts}/**/*.js\" --fix",
"format": "prettier-eslint \"{packages,scripts}/**/*.js\" --write",
"precommit": "lint-staged"
},
"eslintConfig": {
"extends": "airbnb"
},
"prettier": {
"printWidth": 100,
"singleQuote": true
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"git add"
]
},
"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",
"devDependencies": {
"babel-jest": "^20.0.3",
"coveralls": "^2.13.1",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"fs-jetpack": "^1.3.0",
"husky": "^0.14.3",
"jest": "^20.0.3",
"lerna": "2.1.2",
"lint-staged": "^7.0.4",
"marked": "^0.3.19",
"prettier": "^1.12.1",
"prettier-eslint-cli": "^4.7.1",
"react": "^15.0.0-0 || ^16.0.0-0",
"react-dom": "^15.0.0-0 || ^16.0.0-0",
"regenerator-runtime": "^0.10.5"
}
}