-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.55 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
{
"name": "reon",
"version": "3.1.3",
"description": "Event library for React built to resemble React's internal Synthetic Events",
"main": "lib/index.js",
"scripts": {
"test": "eslint src && jest",
"build": "babel -d lib src",
"prepublishOnly": "NODE_ENV=production npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ambassify/reon.git"
},
"keywords": [
"react",
"event",
"events",
"synthetic",
"synthetic event"
],
"author": "Ambassify <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ambassify/reon/issues"
},
"homepage": "https://github.com/ambassify/reon#readme",
"peerDependencies": {
"react": ">=15"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@testing-library/dom": "^7.29.0",
"@testing-library/user-event": "^12.6.0",
"babel-jest": "^26.0.0",
"babel-plugin-transform-dev": "^2.0.1",
"babel-plugin-transform-undefined-to-void": "^6.9.4",
"eslint": "^7.17.0",
"jest-cli": "^26.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"ts-node": "^9.1.1"
},
"jest": {
"coverageReporters": [
"json-summary",
"lcov"
],
"collectCoverage": true,
"testMatch": [
"**/tests/**/*.js"
],
"roots": [
"<rootDir>/tests"
],
"automock": false
}
}