-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.48 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
{
"name": "was-keypress-enter",
"version": "0.3.0",
"description": "A simple function to check if a keypress was the return/enter key. The function takes an event and returns a boolean.",
"main": "./lib/index.js",
"scripts": {
"test": "mocha --require @babel/register --recursive --reporter progress",
"cover": "cross-env NODE_ENV=test BABEL_ENV=test nyc --all mocha --recursive ./test",
"build": "node_modules/.bin/babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opr/was-keypress-enter.git"
},
"babel": {
"env": {
"test": {
"plugins": [
"istanbul"
]
}
},
"presets": [
"@babel/env"
]
},
"nyc": {
"require": [
"@babel/register"
],
"extension": [
".jsx"
],
"include": [
"src/**"
],
"reporter": [
"text",
"cobertura",
"lcov"
],
"sourceMap": false,
"instrument": false
},
"author": "Thomas Roberts",
"license": "ISC",
"bugs": {
"url": "https://github.com/opr/was-keypress-enter/issues"
},
"homepage": "https://github.com/opr/was-keypress-enter#readme",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"babel-plugin-istanbul": "^5.1.0",
"chai": "^4.1.2",
"cross-env": "^5.2.0",
"jsdom": "^11.3.0",
"mocha": "^4.0.1",
"nyc": "^13.1.0"
},
"dependencies": {}
}