-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.39 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
{
"name": "class-autobind",
"version": "0.1.4",
"description": "Method auto-bind for ES6 (ES2015) classes",
"main": "lib/autobind.js",
"scripts": {
"build": "rimraf lib && babel src --ignore '_*' --out-dir lib",
"prepublish": "npm run build",
"lint": "eslint --max-warnings 0 .",
"typecheck": "flow",
"test-src": "mocha src/__tests__/*.js src/**/__tests__/*.js",
"test": "npm run lint && npm run typecheck && npm run test-src"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-plugin-transform-class-properties": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"eslint": "^2.12.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-flow-vars": "^0.4.0",
"eslint-plugin-react": "^5.1.1",
"expect": "^1.20.1",
"flow-bin": "^0.27.0",
"mocha": "^2.5.3",
"rimraf": "^2.5.2"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/kodefox/class-autobind.git"
},
"keywords": [
"react",
"autobind",
"es6-class"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/kodefox/class-autobind/issues"
},
"homepage": "https://github.com/kodefox/class-autobind#readme"
}