-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
65 lines (65 loc) · 1.74 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
{
"name": "fixclosure",
"description": "JavaScript dependency checker/fixer for Closure Library based on ECMAScript AST",
"version": "4.0.1",
"author": "Teppei Sato <[email protected]>",
"engines": {
"node": ">=18"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"fixclosure": "./bin/fixclosure.js"
},
"files": [
"bin",
"lib",
"types"
],
"scripts": {
"build": "tsc",
"clean": "rimraf lib .tsbuildinfo",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"fix": "run-s fix:prettier fix:eslint",
"fix:eslint": "npm run lint:eslint -- --fix",
"fix:prettier": "npm run lint:prettier -- --write",
"test": "run-s clean build lint:* unit",
"unit": "mocha"
},
"dependencies": {
"@teppeis/doctrine": "^3.2.0",
"@types/cli-color": "^2.0.6",
"@types/estraverse": "5.1.7",
"@types/estree": "1.0.6",
"@types/estree-jsx": "^1.0.5",
"cli-color": "^2.0.4",
"commander": "^11.1.0",
"espree": "^9.6.1",
"estraverse-fb": "^1.3.2",
"globby": "^14.0.2",
"google-closure-deps": ">=20190325.0.0",
"lodash.difference": "^4.5.0"
},
"devDependencies": {
"@types/chai": "^4.3.20",
"@types/lodash.difference": "^4.5.9",
"@types/mocha": "^10.0.10",
"@types/node": "^18.19.67",
"@types/sinon": "^17.0.3",
"chai": "^4.5.0",
"eslint": "^8.57.1",
"eslint-config-teppeis": "^19.1.2",
"mocha": "^10.8.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.1",
"rimraf": "^5.0.10",
"sinon": "^17.0.2",
"tempy": "^3.1.0",
"ts-node": "^10.9.2",
"ts-node-test-register": "^10.0.0",
"typescript": "^5.7.2"
},
"repository": "https://github.com/teppeis/fixclosure",
"license": "MIT"
}