forked from nmn/react-timeago
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.97 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
{
"name": "react-timeago",
"version": "4.4.0",
"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"
},
"ava": {
"babel": "inherit",
"require": [
"babel-register"
]
},
"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": {
"babel-cli": "^6.14.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.4.3",
"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-flow": "^6.23.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.13.0",
"babelify": "^8.0.0",
"browserify": "^16.2.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"flow-bin": "^0.90.0",
"jest": "^22.4.3",
"prettier": "1.12.0",
"react": "^16.3.1",
"react-addons-test-utils": "^15.3.0",
"react-dom": "^16.3.1"
},
"dependencies": {},
"prettier": {
"printWidth": 80,
"parser": "flow",
"semi": false,
"trailingComma": "all",
"singleQuote": true
}
}