-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.61 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
{
"name": "babel-plugin-react-scope-binding",
"version": "1.1.3",
"description": "Babel plugin for React component to take event handler to bind context automatically.",
"keywords": [
"babel-plugin"
],
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "babel ./src --out-dir ./lib",
"build:watch": "npm run build -- --watch",
"clean": "rimraf ./lib",
"lint": "eslint . --ext .js",
"lint:fix": "npm run lint -- --fix",
"test": "ava",
"test:watch": "npm run test -- --watch",
"precommit": "npm run lint && npm run test",
"prepublishOnly": "npm run clean && npm run build && npm run lint && npm run test"
},
"devDependencies": {
"ava": "^0.18.2",
"babel-cli": "^6.23.0",
"babel-core": "^6.13.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.16.0",
"bluebird": "^3.5.0",
"cross-env": "^3.1.4",
"eslint": "^3.15.0",
"eslint-config-invincible": "^1.0.0",
"husky": "^0.13.3",
"rimraf": "^2.5.4",
"webpack": "^1.13.1"
},
"ava": {
"files": [
"test/index.js"
],
"require": [
"babel-register"
],
"babel": "inherit"
},
"author": "Chikara Chan",
"homepage": "https://github.com/chikara-chan/babel-plugin-react-scope-binding",
"repository": {
"type": "git",
"url": "https://github.com/chikara-chan/babel-plugin-react-scope-binding.git"
},
"license": "MIT"
}