forked from nmn/react-timeago
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.24 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
{
"name": "@mil/react-timeago",
"version": "3.5.2",
"description": "A simple Time-Ago component for ReactJs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"cpflow": "find ./src -name '*.js' -not -path '*/__*' | while read filepath; do cp $filepath `echo $filepath | sed 's/\\/src\\//\\/lib\\//g'`.flow; done",
"cptyping": "cpx './src/index.d.ts' lib",
"babel": "babel src/ --out-dir lib/",
"example": "browserify -t babelify --debug examples/simple/index.js -o examples/simple/bundle.js",
"build": "npm run babel && npm run cpflow && npm run cptyping && npm run example",
"prepare": "npm run build",
"test": "ava --require babel-register",
"coverall": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"ava": {
"babel": "inherit"
},
"repository": {
"type": "git",
"url": "https://github.com/naman34/react-timeago.git"
},
"keywords": [
"React",
"ReactJS",
"Time",
"Ago",
"TimeAgo",
"ender"
],
"author": "Naman Goel",
"license": "MIT",
"bugs": {
"url": "https://github.com/nmn/react-timeago/issues"
},
"homepage": "https://github.com/nmn/react-timeago",
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"@types/react": "^16.0.0",
"ava": "^0.22.0",
"babel-cli": "^6.14.0",
"babel-eslint": "^8.0.1",
"babel-plugin-syntax-flow": "^6.13.0",
"babel-plugin-syntax-jsx": "^6.13.0",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-plugin-transform-react-jsx": "^6.7.5",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.13.0",
"babel-register": "^6.18.0",
"babelify": "^7.3.0",
"browserify": "^14.5.0",
"coveralls": "^3.0.0",
"cpx": "^1.5.0",
"enzyme": "^3.1.0",
"eslint": "^4.9.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "^3.0.1",
"nyc": "^11.2.1",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"dependencies": {}
}