-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 2.12 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
80
81
82
83
84
85
86
87
88
{
"name": "@saeris/react-keyrune",
"version": "1.0.9",
"description": "A simple React component wrapper around Keyrune",
"keywords": [
"react",
"keyrune",
"magic the gathering"
],
"author": "Drake Costa <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/saeris/react-keyrune.git"
},
"bugs": {
"url": "https://github.com/saeris/react-keyrune/issues"
},
"homepage": "https://github.com/saeris/react-keyrune",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"es",
"lib",
"src/*",
"resources",
"*.json",
"*.js",
"*.mjs",
"*.map"
],
"scripts": {
"build": "nwb build-react-component",
"lint": "eslint ./src",
"clean": "nwb clean-module && nwb clean-demo",
"start": "nwb serve-react-demo",
"test": "yarn lint && jest",
"test:watch": "jest --watch",
"test:coverage": "jest && codecov",
"precommit": "lint-staged",
"prepublish": "snyk protect",
"prepublishOnly": "yarn test && yarn build --copy-files --no-demo",
"release": "yarn publish --access public"
},
"dependencies": {
"classnames": "^2.2.6"
},
"peerDependencies": {
"keyrune": "^3.3.0",
"react": "16.x"
},
"devDependencies": {
"@saeris/react-keyrune": "^1.0.8",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"codecov": "^3.1.0",
"emotion": "^10.0.0",
"eslint": "^5.6.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.16.0",
"eslint-plugin-react": "^7.11.1",
"favicons-webpack-plugin": "^0.0.9",
"focus-trap-react": "^4.0.1",
"jest": "^23.6.0",
"keyrune": "^3.3.0",
"lint-staged": "^9.2.5",
"nwb": "0.23.x",
"nwb-sass": "^0.9.0",
"prettier": "^1.14.3",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-emotion": "^9.2.12",
"react-testing-library": "^5.1.1",
"snyk": "^1.198.0"
},
"babel": {
"presets": [
"env",
"react"
]
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"snyk": true
}