This repository has been archived by the owner on Oct 25, 2022. It is now read-only.
forked from bguggie/react-prop-types-element-of-type
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.3 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
73
74
75
{
"name": "react-prop-types-element-of-type",
"version": "2.0.1",
"description": "Check if given React element is created by certain Component type (fork for react-15)",
"main": "lib/index.js",
"files": [
"lib/",
"src/",
"CHANGELOG.md"
],
"scripts": {
"clean": "rimraf lib",
"prebuild": "npm run lint && npm run clean",
"build": "cross-env NODE_ENV=production babel src --out-dir lib",
"lint": "cross-env NODE_ENV=test eslint .",
"pretest:cov": "npm run lint",
"pretest": "npm run lint",
"test:cov": "cross-env NODE_ENV=test babel-node ./node_modules/.bin/isparta cover --report lcov _mocha -- $npm_package_config_mocha",
"test:watch": "npm test -- --watch",
"test": "cross-env NODE_ENV=test mocha $npm_package_config_mocha"
},
"config": {
"mocha": "--compilers js:babel-register ./src/**/__tests__/*.spec.js --require ./src/__tests__/__setup__.js"
},
"repository": {
"type": "git",
"url": "https://github.com/tomchentw/react-prop-types-element-of-type"
},
"keywords": [
"React.js",
"React",
"propTypes",
"elementOfType"
],
"author": {
"name": "tomchentw",
"email": "[email protected]",
"url": "https://github.com/tomchentw"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tomchentw/react-prop-types-element-of-type/issues"
},
"homepage": "https://tomchentw.github.io/react-prop-types-element-of-type/",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-eslint": "^5.0.0-beta6",
"babel-plugin-transform-flow-comments": "^6.4.0",
"babel-plugin-typecheck": "^3.6.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.4.3",
"codeclimate-test-reporter": "^0.3.0",
"cross-env": "^1.0.7",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^4.0.0",
"eslint-plugin-react": "^3.16.1",
"expect": "^1.13.4",
"isparta": "^4.0.0",
"istanbul": "^0.4.2",
"jsdom": "^8.0.0",
"mocha": "^2.4.4",
"react": "^0.14.6 || ^15.0.0-0",
"react-dom": "^0.14.6 || ^15.0.0-0",
"rimraf": "^2.5.1",
"thenify": "^3.1.1",
"tomchentw-npm-dev": "^3.2.0"
},
"dependencies": {},
"peerDependencies": {
"react": "^0.14.6 || ^15.0.0-0"
}
}