-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.42 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.42 KB
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
89
90
91
92
93
94
95
96
97
98
{
"name": "lux-keyboard",
"version": "5.0.0",
"description": "React component + lux store utilities for managing contextual keyboard shortcut modes.",
"license": "MIT",
"main": "src/index.js",
"scripts": {
"lint": "eslint --fix ./",
"cover": "nyc -r text-summary -r html -- npm run test:only",
"cover:show": "open \"file://$PWD/coverage/index.html\"",
"pretest": "npm run lint",
"test": "npm run cover",
"test:only": "NODE_ENV=test mocha 'spec/**/*.spec.js'",
"test:watch": "npm run test:only -- -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeanKit-Labs/lux-keyboard.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"author": "LeanKit",
"contributors": [
{
"name": "Jim Cowart",
"email": "jim.cowart@leankit.com",
"url": "http://ifandelse.com"
},
{
"name": "Ryan Niemeyer",
"email": "ryan.niemeyer@leankit.com",
"url": "http://www.knockmeout.net"
}
],
"bugs": {
"url": "https://github.com/LeanKit-Labs/lux-keyboard/issues"
},
"homepage": "https://github.com/LeanKit-Labs/lux-keyboard#readme",
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.13.13",
"@babel/register": "^7.13.14",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.0",
"babel-plugin-add-module-exports": "^1.0.4",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-enzyme": "^1.0.0-beta.1",
"core-js": "^3.9.1",
"dirty-chai": "^2.0.1",
"enzyme": "^3.11.0",
"eslint-config-leankit": "^6.0.0",
"jsdom": "^16.5.2",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"postal": "^2.0.4",
"proxyquire": "^2.1.3",
"react-dom": "^17.0.2",
"regenerator-runtime": "^0.13.7",
"sinon": "^10.0.0",
"sinon-chai": "^3.6.0"
},
"nyc": {
"exclude": [
"src/MousetrapWrapper.js"
],
"include": [
"src/**/*.js"
],
"all": true,
"require": [
"@babel/register"
],
"sourceMap": true,
"instrument": true
},
"mocha": {
"require": [
"@babel/register",
"spec/pre-setup.js",
"spec/node-setup.js"
],
"reporters": [
"spec"
]
},
"dependencies": {
"lodash": "^4.17.21",
"lux.js": "^2.0.0",
"mousetrap": "^1.6.5",
"prop-types": "^15.7.2",
"react": "^16.3.0 || ^17.0.2"
}
}