-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.17 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.17 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
{
"name": "checkup-plugin-javascript",
"version": "2.0.1",
"description": "A checkup plugin for Javascript project tasks",
"keywords": [
"checkup-plugin"
],
"homepage": "https://github.com/checkupjs/checkup",
"bugs": "https://github.com/checkupjs/checkup/issues",
"repository": "https://github.com/checkupjs/checkup",
"license": "MIT",
"author": "Cara Kessler @carakessler",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"/lib",
"/yarn.lock"
],
"scripts": {
"build": "tsc --build",
"docs:generate": "checkup-plugin docs",
"test": "vitest run"
},
"dependencies": {
"@babel/eslint-parser": "^7.17.0",
"@babel/parser": "^7.18.0",
"@checkup/core": "^2.0.1",
"ember-template-recast": "^5.0.3",
"npm-check": "^5.9.2",
"recast": "^0.21.1",
"semver": "^7.3.5",
"sloc": "^0.2.1",
"tslib": "^2"
},
"devDependencies": {
"@checkup/plugin": "^2.0.1",
"@checkup/test-helpers": "^2.0.1",
"@types/semver": "^7.3.9",
"fixturify-project": "^2.1.1",
"rimraf": "^3.0.2"
},
"engines": {
"node": ">= 14"
},
"publishConfig": {
"access": "public"
}
}