-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 938 Bytes
/
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
{
"name": "react-event-utils",
"version": "1.0.1",
"description": "Shorthand utils for dealing with React events",
"main": "lib/index.js",
"repository": "[email protected]:tusbar/react-event-utils.git",
"author": "Bertrand Marron <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^19.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jest": "^19.0.1",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"jest": "^19.0.2"
},
"scripts": {
"transpile": "babel src --out-dir lib",
"lint": "eslint src",
"jest": "jest",
"test": "yarn lint && yarn transpile && yarn jest",
"prepublish": "yarn test"
}
}