-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
65 lines (65 loc) · 1.49 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
{
"name": "react-picker-address",
"version": "1.0.3",
"description": "react mobile address picker component",
"keywords": [
"react",
"react-component"
],
"homepage": "https://github.com/LANIF-UI/react-picker-address",
"files": [
"dist",
"lib",
"es",
"assets/*.css"
],
"repository": {
"type": "git",
"url": "[email protected]:LANIF-UI/react-picker-address.git"
},
"bugs": {
"url": "https://github.com/LANIF-UI/react-picker-address/issues"
},
"license": "MIT",
"main": "./lib",
"module": "./es",
"config": {
"port": 8000,
"entry": {
"react-picker-address": [
"./assets/index.less",
"./src/index.js"
]
}
},
"scripts": {
"dist": "rc-tools run dist",
"build": "rc-tools run build",
"gh-pages": "rc-tools run gh-pages",
"start": "rc-tools run server",
"compile": "rc-tools run compile --babel-runtime",
"pub": "rc-tools run pub --babel-runtime",
"lint": "rc-tools run lint",
"karma": "rc-test run karma",
"saucelabs": "rc-test run saucelabs",
"test": "rc-test run test",
"chrome-test": "rc-test run chrome-test",
"coverage": "rc-test run coverage"
},
"devDependencies": {
"expect.js": "~0.3.1",
"pre-commit": "1.x",
"rc-test": "^6.0.8",
"rc-tools": "^7.0.6",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"dependencies": {
"babel-runtime": "6.x",
"classnames": "^2.2.5",
"prop-types": "^15.5.8"
},
"pre-commit": [
"lint"
]
}