-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.66 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
{
"name": "babel-plugin-react-add-property",
"version": "0.1.2",
"description": "a Babel plugin for adding a data property to React components",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.7.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.5.0",
"eslint-plugin-react": "^7.6.0",
"jest": "^22.1.4",
"lint-staged": "^6.1.0",
"prettier": "^1.10.2"
},
"scripts": {
"build": "babel src -d lib",
"build:watch": "babel src -w -d lib",
"lint": "eslint src __tests__",
"precommit": "lint-staged && yarn lint",
"prepublishOnly": "npm run build",
"prettier": "prettier --write src/**/*.js",
"review": "npm run lint && npm test",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alanbsmith/babel-plugin-react-add-property.git"
},
"author": "Alan B Smith <[email protected]> (https://github.com/alanbsmith)",
"license": "MIT",
"bugs": {
"url": "https://github.com/alanbsmith/babel-plugin-react-add-property/issues"
},
"homepage": "https://github.com/alanbsmith/babel-plugin-react-add-property#readme",
"lint-staged": {
"*.{js,json,md}": ["prettier --write", "git add"]
}
}