-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 1.95 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
76
77
78
79
80
81
82
{
"name": "rmc-steps",
"version": "1.0.1",
"description": "steps ui component for react mobile",
"keywords": [
"react",
"react-component",
"react-steps",
"mobile steps"
],
"main": "./lib/index",
"files": [
"lib",
"assets/iconfont.css",
"assets/index.css"
],
"homepage": "http://github.com/react-component/m-steps",
"maintainers": [
{
"name": "afc163",
"email": "afc163@gmail.com"
}
],
"repository": {
"type": "git",
"url": " git+ssh://git@github.com/react-component/m-steps.git"
},
"bugs": {
"url": "http://github.com/react-component/m-steps/issues"
},
"licenses": "MIT",
"config": {
"port": 8002
},
"scripts": {
"dist": "rc-tools run dist",
"watch-tsc": "rc-tools run watch-tsc",
"build": "rc-tools run build",
"compile": "rc-tools run compile --babel-runtime",
"gh-pages": "rc-tools run gh-pages",
"start": "rc-tools run server",
"pub": "rc-tools run pub --babel-runtime",
"lint": "rc-tools run lint",
"lint:fix": "rc-tools run lint --fix",
"test": "npm run compile && jest",
"prepublish": "rc-tools run guard",
"coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"jest": {
"collectCoverageFrom": [
"src/**/*"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"transform": {
"\\.jsx?$": "./node_modules/rc-tools/scripts/jestPreprocessor.js"
}
},
"devDependencies": {
"@types/react": "~16.0.2",
"@types/react-dom": "15.5.1",
"coveralls": "^2.11.15",
"enzyme": "^2.6.0",
"enzyme-to-json": "^1.5.0",
"jest": "^20.0.4",
"pre-commit": "1.x",
"querystring": "^0.2.0",
"rmc-dialog": "~0.0.1-alpha.4",
"rc-tools": "6.x",
"react": "15.x",
"react-dom": "15.x",
"react-test-renderer": "^15.3.2"
},
"pre-commit": [
"lint"
],
"dependencies": {
"babel-runtime": "^6.23.0",
"classnames": "^2.2.3"
}
}