package.json
2.9 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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"_from": "jsx-ast-utils@^3.1.0",
"_id": "jsx-ast-utils@3.1.0",
"_inBundle": false,
"_integrity": "sha512-d4/UOjg+mxAWxCiF0c5UTSwyqbchkbqCvK87aBovhnh8GtysTjWmgC63tY0cJx/HzGgm9qnA147jVBdpOiQ2RA==",
"_location": "/jsx-ast-utils",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "jsx-ast-utils@^3.1.0",
"name": "jsx-ast-utils",
"escapedName": "jsx-ast-utils",
"rawSpec": "^3.1.0",
"saveSpec": null,
"fetchSpec": "^3.1.0"
},
"_requiredBy": [
"/eslint-plugin-jsx-a11y",
"/eslint-plugin-react"
],
"_resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.1.0.tgz",
"_shasum": "642f1d7b88aa6d7eb9d8f2210e166478444fa891",
"_spec": "jsx-ast-utils@^3.1.0",
"_where": "C:\\Users\\kkwan_000\\Desktop\\git\\2017110269\\minsung\\node_modules\\eslint-plugin-jsx-a11y",
"author": {
"name": "Ethan Cohen"
},
"bugs": {
"url": "https://github.com/evcohen/jsx-ast-utils/issues"
},
"bundleDependencies": false,
"dependencies": {
"array-includes": "^3.1.1",
"object.assign": "^4.1.1"
},
"deprecated": false,
"description": "AST utility module for statically analyzing JSX",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/parser": "^7.11.5",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^20.0.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-replace-object-assign": "^1.0.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babylon": "^6.18.0",
"coveralls": "^3.1.0",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"flow-parser": "^0.126.1",
"in-publish": "^2.0.1",
"jest": "^20.0.4",
"jest-cli": "^20.0.4",
"object.entries": "^1.1.2",
"object.fromentries": "^2.0.2",
"rimraf": "^2.7.1",
"safe-publish-latest": "^1.1.4"
},
"engines": {
"node": ">=4.0"
},
"homepage": "https://github.com/evcohen/jsx-ast-utils#readme",
"jest": {
"coverageReporters": [
"lcov"
],
"coverageDirectory": "reports",
"testPathIgnorePatterns": [
"/node_modules/",
"helper.js"
]
},
"keywords": [
"jsx",
"ast",
"lint",
"eslint"
],
"license": "MIT",
"main": "lib/index.js",
"name": "jsx-ast-utils",
"repository": {
"type": "git",
"url": "git+https://github.com/evcohen/jsx-ast-utils.git"
},
"scripts": {
"build": "babel src --out-dir lib",
"coveralls": "cat ./reports/lcov.info | coveralls",
"lint": "eslint .",
"prebuild": "rimraf lib",
"prepublish": "not-in-publish || (safe-publish-latest && npm test && npm run build)",
"pretest": "npm run lint",
"test": "npm run tests-only --",
"test:watch": "npm run tests-only -- --watch",
"tests-only": "jest --coverage"
},
"version": "3.1.0"
}