-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.11 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
{
"name": "react-input-icons",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "jest --coverage",
"lint": "eslint src",
"validate": "npm-run-all --parallel test lint build",
"build": "babel --out-dir dist --ignore *.test.js src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/megaurav2002/react-input-icons.git"
},
"keywords": [
"react",
"input icons"
],
"files": [
"dist"
],
"author": "Gaurav Talwar",
"license": "MIT",
"bugs": {
"url": ""
},
"homepage": "",
"devDependencies": {
"babel-jest": "^20.0.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"ghooks": "^2.0.0",
"jest": "^20.0.4",
"npm-run-all": "^4.1.1",
"react": "^15.6.1",
"regenerator-runtime": "^0.11.0"
},
"dependencies": {},
"config": {
"ghooks": {
"pre-commit": "npm run validate"
}
}
}