-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
79 lines (79 loc) · 1.96 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
73
74
75
76
77
78
79
{
"name": "react-inky",
"version": "0.5.0",
"description": "React components for Inky",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "babel src/ -d lib/ --ignore __tests__",
"docs:build": "gitbook build",
"docs:deploy": "npm run docs:build && gh-pages -d _book",
"docs:serve": "gitbook serve",
"test": "xo && mocha --require @babel/register \"src/**/__tests__/*.js\"",
"prepare": "gitbook install",
"prepublishOnly": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gakimball/react-inky.git"
},
"keywords": [
"react",
"inky",
"email"
],
"author": "Geoff Kimball <[email protected]> (http://geoffkimball.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gakimball/react-inky/issues"
},
"homepage": "https://github.com/gakimball/react-inky#readme",
"dependencies": {
"classnames": "^2.2.6",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/register": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"chai-html": "^1.3.0",
"dirty-chai": "^2.0.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint-config-xo-react": "^0.20.0",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.3.0",
"gh-pages": "^2.1.1",
"gitbook-cli": "^2.3.2",
"mocha": "^6.2.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"xo": "^0.25.3"
},
"peerDependencies": {
"react": "^16.3.0"
},
"xo": {
"space": 2,
"extends": "xo-react",
"envs": [
"node",
"mocha"
],
"rules": {
"react/boolean-prop-naming": "off",
"react/forbid-component-props": "off",
"unicorn/filename-case": "off"
},
"parser": "babel-eslint"
},
"engines": {
"node": ">=8"
}
}