forked from Mi-FanFan/timeago
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.82 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
{
"name": "mff-timeago",
"version": "1.2.0",
"description": "A simple Time-Ago component for ReactJs",
"main": "lib/index.js",
"scripts": {
"build": "babel src/ --out-dir lib/",
"clean": "rimraf ./lib ",
"prepare": "npm run clean && npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/Mi-FanFan/timeago.git"
},
"keywords": [
"React",
"ReactJS",
"Time",
"Ago",
"TimeAgo",
"ender"
],
"author": "zhhyang",
"license": "MIT",
"bugs": {
"url": "https://github.com/Mi-FanFan/timeago/issues"
},
"homepage": "https://github.com/Mi-FanFan/timeago",
"peerDependencies": {
"react": "^15.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-import": "^1.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-latest": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"enzyme": "^2.9.1",
"eslint": "3.19.0",
"eslint-config-react-app": "^1.0.5",
"eslint-loader": "1.7.1",
"eslint-plugin-flowtype": "2.34.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "5.0.3",
"eslint-plugin-react": "7.1.0",
"jest": "20.0.4",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"rimraf": "^2.6.1"
},
"dependencies": {
"moment": "^2.18.1"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"testMatch": [
"<rootDir>/test/**/*.js?(x)"
]
},
"babel": {
"presets": [
"es2015",
"stage-2",
"react"
]
},
"eslintConfig": {
"extends": "react-app"
}
}