UNPKG

1.9 kBJSONView Raw
1{
2 "name": "rc-gesture",
3 "version": "0.0.22",
4 "description": "Support gesture for react component",
5 "keywords": [
6 "react",
7 "react-component",
8 "react-gesture",
9 "gesture",
10 "touch"
11 ],
12 "homepage": "http://github.com/react-component/gesture/",
13 "repository": {
14 "type": "git",
15 "url": "git@github.com:react-component/gesture.git"
16 },
17 "bugs": {
18 "url": "http://github.com/react-component/gesture/issues"
19 },
20 "files": [
21 "lib",
22 "es",
23 "dist"
24 ],
25 "license": "MIT",
26 "main": "./lib/index",
27 "module": "./es/index",
28 "config": {
29 "port": 8005,
30 "entry": {
31 "rc-gesture": [
32 "./index.js"
33 ]
34 }
35 },
36 "scripts": {
37 "build": "rc-tools run build",
38 "dist": "rc-tools run dist --babel-runtime",
39 "gh-pages": "rc-tools run gh-pages",
40 "start": "rc-tools run server",
41 "compile": "rc-tools run compile --babel-runtime",
42 "watch": "rc-tools run watch",
43 "prepublish": "rc-tools run guard",
44 "prepare": "rc-tools run guard",
45 "prepublishOnly": "rc-tools run guard",
46 "pub": "rc-tools run pub --babel-runtime",
47 "lint": "rc-tools run lint",
48 "test": "jest",
49 "coverage": "jest --coverage"
50 },
51 "jest": {
52 "collectCoverageFrom": [
53 "src/*"
54 ],
55 "transform": {
56 "\\.tsx?$": "./node_modules/rc-tools/scripts/jestPreprocessor.js",
57 "\\.jsx?$": "./node_modules/rc-tools/scripts/jestPreprocessor.js"
58 }
59 },
60 "devDependencies": {
61 "@types/react": "~16.0.36",
62 "@types/react-dom": "16.0.3",
63 "coveralls": "^2.11.15",
64 "enzyme": "^2.8.0",
65 "enzyme-to-json": "^1.5.1",
66 "jest": "^20.0.4",
67 "pre-commit": "1.x",
68 "rc-tools": "^6.3.6",
69 "react": "^15.2.1",
70 "react-dom": "^15.2.1",
71 "react-test-renderer": "^15.5.4"
72 },
73 "pre-commit": [
74 "lint"
75 ],
76 "typings": "./lib/index.d.ts",
77 "dependencies": {
78 "babel-runtime": "6.x"
79 }
80}