-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
82 lines (82 loc) · 2.12 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
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
{
"name": "rmc-cascader",
"version": "5.0.3",
"description": "m-cascader ui component for react",
"keywords": [
"react",
"react-component",
"react-m-cascader",
"m-cascader"
],
"homepage": "https://github.com/react-component/m-cascader",
"repository": {
"type": "git",
"url": "https://github.com/react-component/m-cascader.git"
},
"bugs": {
"url": "https://github.com/react-component/m-cascader/issues"
},
"files": [
"lib",
"es",
"assets/*.css",
"dist"
],
"license": "MIT",
"main": "./lib/index",
"module": "./es/index",
"config": {
"port": 8005,
"entry": {
"rc-cascader": [
"./src/index.tsx",
"./assets/index.less"
]
}
},
"scripts": {
"watch-tsc": "rc-tools run watch-tsc",
"compile": "rc-tools run compile --babel-runtime",
"build": "rc-tools run build",
"dist": "rc-tools run dist --babel-runtime",
"gh-pages": "rc-tools run gh-pages",
"start": "rc-tools run server",
"prepublish": "rc-tools run guard",
"prepare": "rc-tools run guard",
"prepublishOnly": "rc-tools run guard",
"pub": "rc-tools run pub --babel-runtime",
"lint": "rc-tools run lint --no-js-lint",
"karma": "rc-test run karma",
"saucelabs": "rc-tools run saucelabs",
"test": "rc-test run test",
"chrome-test": "rc-test run chrome-test",
"coverage": "rc-test run coverage",
"rn-start": "node node_modules/react-native/local-cli/cli.js start",
"rn-init": "rc-tools run react-native-init"
},
"devDependencies": {
"@types/mocha": "~2.2.32",
"@types/react": "^15.5.0",
"@types/react-dom": "^15.5.0",
"@types/react-native": "^0.46.9",
"create-react-class": "^15.6.0",
"expect.js": "0.3.x",
"fastclick": "^1.0.6",
"pre-commit": "1.x",
"rc-test": "6.x",
"rc-tools": "6.x",
"react": "15.5.x",
"react-dom": "15.5.x",
"react-native": "~0.42.0",
"react-native-index-page": "~0.2.0"
},
"typings": "./lib/index.d.ts",
"pre-commit": [
"lint"
],
"dependencies": {
"array-tree-filter": "2.1.x",
"babel-runtime": "6.x",
"rmc-picker": "~5.0.0"
}
}