-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 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
{
"name": "is-react-synthetic-event",
"version": "1.1.1",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.mjs",
"source": "src/index.js",
"license": "MIT",
"description": "Is it react synthetic event?",
"repository": "https://github.com/taehwanno/is-react-synthetic-event",
"bugs": "https://github.com/taehwanno/is-react-synthetic-event/issues",
"author": "Taehwan Noh <[email protected]>",
"keywords": [
"react",
"synthetic event"
],
"files": [
"dist",
"src"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "microbundle",
"clean": "rimraf dist",
"lint": "eslint src/* tests/*",
"prepublishOnly": "npm run build",
"prettier": "prettier-eslint --write src/**/*.js tests/**/*.js",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"ncu": "ncu"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lerna": "^3.22.1",
"lint-staged": "^10.4.0",
"microbundle": "^0.12.3",
"npm-check-updates": "^9.0.1",
"prettier": "^2.1.2",
"prettier-eslint": "^11.0.0",
"prettier-eslint-cli": "^5.0.0",
"rimraf": "^3.0.2"
},
"peerDependencies": {
"react": "^0.14 || ^15 || ^16 || ^17"
}
}