UNPKG

1.73 kBJSONView Raw
1{
2 "name": "@ten-group/ng-ten",
3 "description": "A simple CLI to help Ten Group with CI/CD process for Angular apps.",
4 "version": "0.1.15",
5 "author": "Samuel Ryzycki @sryzycki",
6 "bin": {
7 "ng-ten": "./bin/run"
8 },
9 "bugs": "https://github.com/tenproduct/ng-ten/issues",
10 "dependencies": {
11 "@oclif/command": "^1.4.6",
12 "@oclif/config": "^1.3.62",
13 "@oclif/plugin-help": "^1.2.1",
14 "aws-sdk": "^2.219.1",
15 "chalk": "^2.3.2",
16 "mime": "^2.2.2",
17 "npm-run-all": "^4.1.2",
18 "standard-version": "^4.3.0",
19 "walk": "^2.3.13"
20 },
21 "devDependencies": {
22 "@oclif/dev-cli": "^1.4.2",
23 "@oclif/test": "^1.0.1",
24 "@oclif/tslint": "^1.0.2",
25 "@types/chai": "^4.0.8",
26 "@types/mocha": "^2.2.44",
27 "@types/node": "^9.4.7",
28 "chai": "^4.1.2",
29 "globby": "^8.0.1",
30 "mocha": "^4.0.1",
31 "ts-node": "^5.0.1",
32 "tslib": "^1.9.0",
33 "tslint": "^5.9.1",
34 "typescript": "^2.7.2"
35 },
36 "engines": {
37 "node": ">=8.0.0"
38 },
39 "files": [
40 ".oclif.manifest.json",
41 "/bin",
42 "/lib"
43 ],
44 "homepage": "https://github.com/tenproduct/ng-ten",
45 "keywords": [
46 "oclif"
47 ],
48 "license": "MIT",
49 "main": "lib/index.js",
50 "oclif": {
51 "commands": "./lib/commands",
52 "bin": "ng-ten",
53 "plugins": [
54 "@oclif/plugin-help"
55 ]
56 },
57 "repository": "tenproduct/ng-ten",
58 "scripts": {
59 "build": "rm -rf lib && tsc",
60 "lint": "tsc -p test --noEmit && tslint -p test -t stylish",
61 "test": "mocha --forbid-only \"test/**/*.test.ts\"",
62 "release:prepare": "npm run build && standard-version && oclif-dev manifest",
63 "release:publish": "git push --follow-tags origin master; npm publish --access public"
64 },
65 "types": "lib/index.d.ts"
66}