-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.71 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
{
"name": "rmc-trigger",
"version": "1.0.11",
"description": "base abstract trigger component for react mobile",
"keywords": [
"react",
"react-component",
"react-trigger",
"m-trigger"
],
"homepage": "https://github.com/react-component/m-trigger",
"author": "",
"repository": {
"type": "git",
"url": "https://github.com/react-component/m-trigger.git"
},
"bugs": {
"url": "https://github.com/react-component/m-trigger/issues"
},
"files": [
"es",
"lib",
"dist",
"assets/*.css"
],
"license": "MIT",
"main": "./lib/index",
"module": "./es/index",
"config": {
"port": 8200,
"entry": {
"rmc-trigger": [
"./index.js",
"./assets/index.less"
]
}
},
"scripts": {
"dist": "rc-tools run dist",
"watch-tsc": "rc-tools run watch-tsc",
"build": "rc-tools run build",
"gh-pages": "rc-tools run gh-pages",
"start": "rc-tools run server",
"compile": "rc-tools run compile",
"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": {
"@types/react": "~16.0.2",
"@types/react-dom": "15.5.1",
"async": "~1.5.0",
"expect.js": "0.3.x",
"jquery": "~1.11.3",
"pre-commit": "1.x",
"rc-test": "6.x",
"rc-tools": "6.x",
"react": "15.x",
"react-dom": "15.x"
},
"pre-commit": [
"lint"
],
"typings": "./lib/index.d.ts",
"dependencies": {
"babel-runtime": "6.x",
"rc-animate": "2.x",
"rc-util": "4.x",
"rmc-align": "~1.0.0"
}
}