-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"name": "babel-plugin-jsx-event-modifiers",
"version": "2.0.5",
"description": "JSX Syntactic Sugar Plugin for Event Modifiers",
"main": "dist/bundle.js",
"repository": "https://github.com/nickmessing/babel-plugin-jsx-event-modifiers.git",
"author": "Nicolai Moraru <dot.nick.dot.messing@gmail.com>",
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"ava": "^0.22.0",
"babel-core": "^6.26.0",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-preset-env": "^1.6.0",
"eslint": "^4.5.0",
"eslint-config-prettier": "^2.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"nyc": "^11.1.0",
"prettier": "^1.5.3",
"rollup": "^0.47.6",
"rollup-plugin-babel": "^3.0.2"
},
"scripts": {
"lint": "eslint .",
"pretest": "NODE_ENV=test npm run build",
"test": "nyc --reporter=html --reporter=text ava",
"build": "rollup --config build.js",
"prepare": "npm run build"
},
"nyc": {
"include": [
"src"
]
}
}