forked from nmn/react-timeago
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.91 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
{
"name": "react-timeago",
"version": "5.1.1",
"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": "jest --coverage"
},
"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": {
"@babel/cli": "^7.11.0",
"@babel/core": "^7.11.0",
"@babel/plugin-syntax-flow": "^7.10.4",
"@babel/plugin-syntax-jsx": "^7.10.4",
"@babel/plugin-transform-flow-strip-types": "^7.10.4",
"@babel/plugin-transform-react-jsx": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-flow": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/preset-stage-1": "^7.8.3",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"babel-jest": "^26.3.0",
"babelify": "^10.0.0",
"browserify": "^16.5.2",
"flow-bin": "^0.135.0",
"jest": "^26.4.2",
"prettier": "2.1.2",
"react": "^16.13.1",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.13.1"
},
"dependencies": {},
"prettier": {
"printWidth": 80,
"parser": "flow",
"semi": false,
"trailingComma": "all",
"singleQuote": true
}
}