-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.54 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
{
"name": "ppx-install",
"description": "Install Esy/OPAM repositories into ReScript",
"version": "0.3.0",
"author": "Diao Zheng",
"bin": {
"ppx-install": "./bin/run"
},
"bugs": "https://github.com/diaozheng999/ppx-install/issues",
"dependencies": {
"@nasi/boost": "0.1.0-unstable.3",
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.2",
"esy": "^0.6.10",
"md5": "^2.3.0",
"rimraf": "^3.0.2",
"semver": "^7.3.5",
"tslib": "^2.2.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.0",
"@types/md5": "^2.3.0",
"@types/node": "^10.17.58",
"@types/semver": "^7.3.5",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"copyfiles": "^2.4.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/diaozheng999/ppx-install",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "ppx-install"
},
"repository": "diaozheng999/ppx-install",
"scripts": {
"lint": "eslint . --ext .ts",
"prepack": "rimraf lib && tsc -b && copyfiles -f src/ppx.vbs lib",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts"
}