-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.31 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.31 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
{
"name": "react-intl-proptypes",
"version": "0.0.1",
"main": "lib/ReactIntlPropTypes.js",
"scripts": {
"build": "babel -d lib/ src/",
"clean": "rimraf lib/",
"lint": "eslint src/",
"test": "mocha ./src/_tests_/*.js --require babel-core/register",
"prepublish": "npm run lint && npm run clean && npm run build"
},
"description": "PropType validators for ReactIntl components, i.e. `<FormattedMessage />`.",
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"chai": "^3.4.1",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^2.1.1",
"eslint-plugin-react": "^3.13.0",
"intl": "^1.0.1",
"mocha": "^2.3.4",
"react": "^0.14.3",
"react-intl": "v2.0.0-beta-2",
"rimraf": "^2.5.0"
},
"peerDependencies": {
"react": "^0.14.3 || ^15.0.0",
"react-intl": "^2.0.0-beta-2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tarrencev/react-intl-proptypes.git"
},
"keywords": [
"react",
"react-intl",
"proptypes"
],
"author": "Tarrence van As",
"license": "MIT",
"bugs": {
"url": "https://github.com/tarrencev/react-intl-proptypes/issues"
},
"homepage": "https://github.com/tarrencev/react-intl-proptypes#readme"
}