-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.72 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
{
"name": "php-imports",
"author": {
"name": "Tarik02",
"email": "[email protected]"
},
"license": "MIT",
"version": "0.6.1",
"description": "JavaScript library for formatting PHP imports",
"homepage": "https://github.com/Tarik02/js-php-imports#readme",
"bugs": {
"url": "https://github.com/Tarik02/js-php-imports/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tarik02/js-php-imports.git"
},
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"php-imports": "./bin/run"
},
"files": [
"/bin",
"/lib"
],
"oclif": {
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-autocomplete",
"@oclif/plugin-warn-if-update-available"
]
},
"scripts": {
"generate-grammar": "node scripts/generate-grammar.js",
"build": "yarn generate-grammar && tsc",
"watch": "yarn generate-grammar && tsc --watch",
"lint": "eslint src --ext .js,.ts"
},
"devDependencies": {
"@types/node": "^14.14.25",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"eslint-plugin-editorconfig": "^3.0.2",
"eslint-plugin-import": "^2.22.1",
"pegjs": "^0.10.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-autocomplete": "^0.3.0",
"@oclif/plugin-help": "^3.2.2",
"@oclif/plugin-warn-if-update-available": "^1.7.0",
"@supercharge/promise-pool": "^1.7.0",
"@types/pegjs": "^0.10.2",
"cli-ux": "^5.5.1",
"doc-parser": "^0.4.9",
"fp-ts": "^2.10.2",
"globby": "^11.0.3",
"io-ts": "^2.2.16",
"io-ts-fuzzy": "^0.1.2",
"io-ts-reporters": "^2.0.0",
"php-parser": "^3.1.0"
}
}