forked from johnfedoruk/create-nodets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.46 KB
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
{
"name": "@wiser/create-devops",
"version": "1.2.1",
"description": "",
"main": "./dist/create-devops",
"bin": "./dist/create-devops",
"files": [
"packages/**/*",
"README.md",
"package.json"
],
"scripts": {
"test": "node_modules/mocha/bin/mocha src/*.spec.ts src/**/*.spec.ts src/**/**/*.spec.ts src/**/**/**/*.spec.ts src/**/**/**/**/*.spec.ts --recursive true --require node_modules/ts-node/register --exit",
"test:watch": "npm run test -- --watch-extensions ts,spec.ts --watch",
"coverage": "node node_modules/nyc/bin/nyc.js --exclude '**/*.spec.ts' --exclude 'src/config.ts' --extension .ts --reporter lcov --reporter text npm run test",
"start": "./node_modules/.bin/nodemon -q --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --delay 250ms --exec 'npm run build && node create-devops' src/index.ts",
"build": "npm run clean && node ./node_modules/.bin/webpack --mode production && chmod +x ./dist/create-devops",
"tsc": "npm run clean && node node_modules/typescript/bin/tsc --p tsconfig.json",
"clean": "rm -rf dist",
"lint": "node node_modules/tslint/bin/tslint -c tslint.json \"src/**/*.ts\"",
"docs": "node node_modules/typedoc/bin/typedoc --out docs/ src/ && echo '*\n!.gitignore' > docs/.gitignore"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/wearewiser/create-devops.git"
},
"author": "John Fedoruk <john.fedoruk@wearewiser.com> (https://wearewiser.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/wearewiser/create-devops/issues"
},
"homepage": "https://github.com/wearewiser/create-devops#readme",
"dependencies": {
"commander": "^8.0.0",
"handlebars": "^4.5.3",
"ini": "^5.0.0",
"isbinaryfile": "^4.0.10",
"ora": "^5.4.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^5.4.3",
"tsnode-di": "0.0.3"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@types/chai": "^4.0.4",
"@types/get-installed-path": "^4.0.0",
"@types/ini": "^4.1.1",
"@types/mocha": "^2.2.43",
"@types/node": "^10.17.60",
"babel-loader": "^8.2.5",
"chai": "^4.1.2",
"mocha": "^4.0.1",
"nodemon": "^1.12.1",
"npm-run-parallel": "^0.6.0",
"nyc": "^11.2.1",
"ts-loader": "^6.2.0",
"ts-node": "^3.3.0",
"tslint": "^5.20.0",
"tslint-config-airbnb": "^5.11.2",
"typedoc": "^0.15.0",
"typescript": "^3.7.3",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
}
}