-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
88 lines (88 loc) · 2.24 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "nxpm",
"description": "nxpm cli",
"version": "2.0.0",
"author": "Bram Borggreve @beeman",
"bin": {
"nxpm": "./bin/run"
},
"bugs": "https://github.com/nxpm/nxpm-cli/issues",
"dependencies": {
"@angular-devkit/core": "^9.1.6",
"@angular-devkit/schematics": "^9.1.6",
"@angular/cli": "^9.1.6",
"@angular/compiler": "^9.1.7",
"@angular/compiler-cli": "^9.1.7",
"@nrwl/workspace": "^14.1.4",
"@oclif/command": "^1.6.1",
"@oclif/config": "^1.15.1",
"@oclif/plugin-help": "^3.0.1",
"chalk": "^4.0.0",
"cli-ux": "^5.4.5",
"fs-extra": "^9.0.0",
"inquirer": "^7.1.0",
"json5": "^2.1.3",
"lodash": "^4.17.15",
"node-fetch": "^2.6.0",
"release-it": "^13.5.8",
"tslib": "^1.13.0"
},
"devDependencies": {
"@nrwl/devkit": "^14.1.4",
"@nrwl/tao": "^14.1.4",
"@oclif/dev-cli": "^1.22.2",
"@oclif/test": "^1.2.6",
"@types/chai": "^4.2.11",
"@types/fs-extra": "^8.1.0",
"@types/inquirer": "^6.5.0",
"@types/json5": "^0.0.30",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.1",
"@types/node-fetch": "^2.5.7",
"@types/tmp": "^0.2.0",
"chai": "^4.2.0",
"eslint": "^5.13",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.1.0",
"globby": "^11.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"mocha": "^7.1.2",
"nx": "^14.6.5",
"nyc": "^15.0.1",
"ts-node": "^8.10.1",
"typescript": "4.4.4"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://nxpm.dev/",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "nxpm",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "nxpm/nxpm-cli",
"scripts": {
"build": "npx tsc",
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts"
}