-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 loc) · 1.39 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
{
"name": "detect-es-version",
"version": "0.1.4",
"description": "A CLI tool that tells you if a package is using modern code.",
"bin": {
"detect-es-version": "./cli.js",
"detect-es-metrics": "./scripts/metrics-cli.js"
},
"main": "./src/index.js",
"scripts": {
"test": "jest",
"benchmark": "node scripts/get-local-package-ecma-version-benchmark.js"
},
"repository": "GoogleChromeLabs/detect-es-version",
"keywords": [
"modern",
"detect",
"javascript",
"ecmascript",
"es5",
"es2016",
"es2017",
"es2018",
"es2019",
"es2020"
],
"license": "Apache-2.0",
"author": "Gary Chew",
"files": [
"data/",
"scripts/metrics-cli.js",
"src/",
"cli.js"
],
"homepage": "https://github.com/GoogleChromeLabs/detect-es-version",
"devDependencies": {
"benchmark": "^2.1.4",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.1.0",
"prettier": "^2.0.5"
},
"dependencies": {
"acorn": "^8.0.1",
"acorn-walk": "^8.0.0",
"ast-module-types": "^2.6.0",
"async": "^3.2.0",
"enhanced-resolve": "^5.0.0-beta.10",
"npm-package-arg": "^8.0.1",
"ora": "^5.0.0",
"rimraf": "^3.0.2",
"tmp-promise": "^3.0.2",
"yargs": "^15.4.1"
},
"jest": {
"testTimeout": 30000
}
}