-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
51 lines (51 loc) · 1.28 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
{
"name": "react-fastclick",
"version": "3.0.2",
"description": "Fast Touch Events for React",
"main": "src/index.js",
"scripts": {
"mocha": "nyc mocha --bail --recursive 'tests/**/*.test.js'",
"lint-tests": "eslint -c node_modules/eslintrc/.eslintrc-es5-mocha tests/",
"lint-src": "eslint -c node_modules/eslintrc/.eslintrc-es5 src/",
"test": "npm run lint-src && npm run lint-tests && npm run mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/JakeSidSmith/react-fastclick"
},
"keywords": [
"react",
"fastclick",
"fast",
"click",
"touch",
"events",
"event",
"mobile"
],
"author": "Jake 'Sid' Smith",
"license": "MIT",
"bugs": {
"url": "https://github.com/JakeSidSmith/react-fastclick/issues"
},
"homepage": "https://github.com/JakeSidSmith/react-fastclick",
"peerDependencies": {
"react": "*"
},
"dependencies": {},
"devDependencies": {
"chai": "=3.5.0",
"eslintrc": "git+https://github.com/JakeSidSmith/eslintrc.git#v0.0.1",
"jsdom": "=8.4.1",
"mocha": "=2.4.5",
"nyc": "=10.1.2",
"react": "=15.4.2",
"react-addons-test-utils": "=15.4.2",
"react-dom": "=15.4.2",
"sinon": "=1.17.3",
"sinon-chai": "=2.8.0"
},
"engines": {
"node": "*"
}
}