This repository was archived by the owner on Oct 27, 2022. It is now read-only.
forked from nmn/react-timeago
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.1 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.1 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
{
"name": "react-timeago",
"version": "3.4.3",
"description": "A simple Time-Ago component for ReactJs",
"main": "lib/index.js",
"scripts": {
"cpflow": "find ./src -name '*.js' -not -path '*/__*' | while read filepath; do cp $filepath `echo $filepath | sed 's/\\/src\\//\\/lib\\//g'`.flow; done",
"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 example",
"prepublish": "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": "^16.0.0"
},
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.14.0",
"babel-eslint": "^6.1.2",
"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-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.13.0",
"babel-register": "^6.18.0",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"coveralls": "^2.11.12",
"enzyme": "^2.4.1",
"eslint": "^3.4.0",
"eslint-config-standard": "^6.0.0",
"eslint-config-standard-react": "^4.0.0",
"eslint-plugin-flow-vars": "^0.5.0",
"eslint-plugin-flowtype": "^2.16.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-react": "^6.2.0",
"eslint-plugin-standard": "^2.0.0",
"nyc": "^8.0.0",
"react": "^15.0.0-rc.2",
"react-addons-test-utils": "^15.3.0",
"react-dom": "^15.3.1"
},
"dependencies": {}
}