-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.61 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": "prop-types-definition",
"version": "1.0.0",
"description": "Patch for prop-types to get property type definition in runtime",
"keywords": [
"analysis",
"definition",
"documentation",
"introspection",
"loader",
"patch",
"prop-types",
"webpack"
],
"homepage": "https://github.com/avito-tech/prop-types-definition",
"author": "Roman Dvornov <rdvornov@gmail.com> (https://github.com/lahmatiy)",
"maintainers": [
{
"name": "Roman Dvornov",
"email": "rdvornov@gmail.com",
"github-username": "lahmatiy"
}
],
"license": "MIT",
"repository": "avito-tech/prop-types-definition",
"bugs": {
"url": "https://github.com/avito-tech/prop-types-definition/issues"
},
"main": "./index.js",
"eslintConfig": {
"env": {
"node": true,
"mocha": true,
"es6": true
},
"rules": {
"no-duplicate-case": 2,
"no-undef": 2,
"no-unused-vars": [
2,
{
"vars": "all",
"args": "after-used"
}
]
}
},
"scripts": {
"test": "mocha",
"coverage": "istanbul cover _mocha -- -R min",
"travis": "npm run test && npm run coveralls",
"coveralls": "istanbul cover _mocha --report lcovonly -- -R min && cat ./coverage/lcov.info | coveralls"
},
"dependencies": {},
"devDependencies": {
"coveralls": "^3.0.9",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^5.2.0",
"prop-types": "^15.7.2"
},
"engines": {
"node": ">=4.0.0"
},
"files": [
"index.js",
"loader.js",
"avito.svg",
"CHANGELOG.md",
"LICENSE",
"README.md"
]
}