forked from ephys/react-intl-formatted-duration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.8 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": "@codemix/react-intl-formatted-duration",
"version": "3.0.0",
"description": "React intl component to express time duration",
"keywords": [
"duration",
"react",
"intl",
"format"
],
"homepage": "https://github.com/en-japan-air/react-intl-formatted-duration",
"license": "MIT",
"main": "dist/bundle.js",
"module": "dist/module.js",
"repository": {
"type": "git",
"url": "https://github.com/en-japan-air/react-intl-formatted-duration"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"codecov": "codecov",
"lint": "eslint index.js",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watchAll",
"prepare": "npm run build",
"posttest": "npm run lint"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-jest": "^23.0.1",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"codecov": "^3.0.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-react-intl": "^2.0.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-react": "^7.9.1",
"flow-bin": "^0.73.0",
"jest": "^23.1.0",
"prettier": "^1.13.4",
"prop-types": "^15.6.1",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-intl": "^2.4.0",
"react-test-renderer": "^16.4.0",
"rollup": "0.60.1",
"rollup-plugin-babel": "3.0.4"
},
"peerDependencies": {
"prop-types": ">= 15.0",
"react": ">= 15.0",
"react-intl": ">= 2.0"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/internals/testing/test-setup.js",
"testRegex": "__tests__/.*\\.test\\.js$",
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
}
}
}