-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.6 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.6 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "react-hoverintent",
"version": "0.0.10",
"description": "A simple react implementation over jquery-hoverintent",
"scripts": {
"lint": "eslint src",
"lint:changed": "LIST=`git diff-index --name-only HEAD | grep '.jsx\\{0,1\\}'$`; if [ \"$LIST\" ]; then eslint $LIST; fi",
"lint:fix": "npm run lint -- --fix",
"lint:changed:fix": "LIST=`git diff-index --name-only HEAD | grep '.jsx\\{0,1\\}'$`; if [ \"$LIST\" ]; then eslint $LIST --fix; fi",
"lint:changed-PR": "LIST=`git diff-index --name-only HEAD^ | grep '.jsx\\{0,1\\}'$`; if [ \"$LIST\" ]; then eslint $LIST; fi",
"test": "npm run test:local && npm run build:component",
"test:local": "env NODE_ENV=test mocha --opts mocha.opts",
"build:component": "babel src/components --out-dir dist/components",
"add:component": "git add dist/",
"start": "webpack-dev-server",
"build:bundle": "webpack",
"cover": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha --opts mocha.opts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nerdchacha/react-hoverintent"
},
"author": {
"name": "Yatin Gera",
"email": "yatin.gera5@gmail.com"
},
"bugs": {
"url": "https://github.com/nerdchacha/react-hoverintent/issues"
},
"main": "index.js",
"keywords": [
"hover",
"hover intent",
"delay"
],
"license": "MIT",
"precommit": {
"run": [
"build:component",
"build:bundle",
"add:component",
"lint:changed"
]
},
"dependencies": {
"prop-types": "^15.5.10",
"react": "^15.4.1",
"react-dom": "^15.4.1"
},
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "^7.1.1",
"babel-istanbul": "^0.12.2",
"babel-loader": "^6.2.10",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^4.0.0",
"babel-plugin-react-display-name": "2.0.0",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-imports": "^1.1.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "1.1.1",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.8.0",
"babel-runtime": "^6.20.0",
"browser-sync": "^2.18.5",
"chai": "^3.5.0",
"classnames": "^2.2.5",
"copy-webpack-plugin": "^4.0.1",
"coveralls": "^2.12.0",
"cross-env": "^3.2.4",
"css-loader": "^0.27.3",
"enzyme": "2.2.0",
"eslint": "^3.12.2",
"eslint-config-standard": "^6.2.1",
"eslint-config-standard-react": "^4.2.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-mocha": "^4.3.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.8.0",
"eslint-plugin-standard": "^2.0.0",
"eventsource-polyfill": "0.9.6",
"expect": "1.19.0",
"extract-text-webpack-plugin": "^1.0.1",
"jsdom": "8.5.0",
"mocha": "2.4.5",
"ncp": "^2.0.0",
"node-sass": "^4.5.0",
"nyc": "^10.1.2",
"postcss-loader": "^1.3.3",
"pre-commit": "^1.2.2",
"react-addons-test-utils": "^15.0.2",
"react-bootstrap": "^0.30.8",
"react-fontawesome": "^1.5.0",
"sass-loader": "^6.0.2",
"scss-loader": "0.0.1",
"style-loader": "^0.13.2",
"webpack": "^1.13.2",
"webpack-dev-middleware": "1.6.1",
"webpack-dev-server": "^1.16.0",
"webpack-hot-middleware": "^2.10.0",
"webpack-middleware": "^1.5.1"
},
"nyc": {
"sourceMap": false,
"instrument": false
}
}