-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 3.63 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@labshare/lsc",
"namespace": "lsc",
"main": "./dist/index.js",
"version": "2.16.0",
"description": "Lab Share Command",
"contributors": "https://github.com/LabShare/lsc/graphs/contributors",
"lsc": {
"cliPattern": "dist/cli/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/LabShare/lsc.git"
},
"preferGlobal": true,
"bugs": {
"url": "https://github.com/LabShare/lsc/issues"
},
"engines": {
"npm": ">=3.7.0",
"node": ">=8.0.0"
},
"types": "./dist/index.d.ts",
"license": "MIT",
"scripts": {
"commitmsg": "commitlint -e $GIT_PARAMS",
"publish": "tsc",
"lint": "npm run prettier:check && npm run eslint",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prettier:cli": "prettier \"**/*.ts\" \"**/*.js\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"eslint": "eslint -c .eslintrc.js --ext '.ts' --report-unused-disable-directives .",
"eslint:fix": "npm run eslint -- --fix",
"pretest": "npm run build",
"test": "jasmine JASMINE_CONFIG_PATH=./test/lib/jasmine.json",
"coverage": "nyc npm run test",
"copytemplates": "cp -r ./templates ./dist",
"build": "tsc && npm run copytemplates",
"watch:build": "tsc --watch",
"snyk-protect": "snyk protect",
"semantic-release": "semantic-release",
"prepare": "npm run snyk-protect",
"lsc": "lsc"
},
"bin": {
"lsc": "./dist/lib/bin/lsc.js"
},
"dependencies": {
"@types/glob": "^7.1.0",
"@types/lodash": "^4.14.109",
"@types/q": "^1.0.5",
"@types/semver": "^5.4.0",
"@types/winston": "^2.3.6",
"@types/yargs": "^12.0.0",
"change-case": "^4.1.1",
"command-exists": "^1.2.9",
"config": "^3.3.0",
"dotenv": "^8.2.0",
"flatiron": "^0.4.2",
"flatiron-cli-config": "^0.1.5",
"fluent-logger": "^3.0.0",
"glob": "^7.1.1",
"gulp": "^4.0.0",
"gulp-rename": "^1.2.3",
"gulp-template": "^5.0.0",
"i": "^0.3.6",
"inquirer": "^6.0.0",
"json-override": "^0.2.0",
"lodash": "^4.17.20",
"npm": "^6.13.7",
"pad-left": "^2.1.0",
"request": "^2.88.0",
"resolve-pkg": "^1.0.0",
"semver": "^5.3.0",
"snyk": "^1.298.0",
"underscore.string": "^3.3.4",
"untildify": "^3.0.3",
"winston": "3.2.1",
"winston-transport": "4.3.0",
"yargs": "^12.0.2"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^7.0.1",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@labshare/semantic-release-config": "^1.0.0",
"@types/gulp": "^4.0.6",
"@types/gulp-rename": "0.0.33",
"@types/gulp-template": "^5.0.1",
"@types/inquirer": "^7.3.0",
"@types/jasmine": "^2.8.16",
"@types/pad-left": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-eslint-plugin": "^2.2.1",
"eslint-plugin-jasmine": "^4.1.0",
"husky": "^4.2.3",
"istanbul": "^0.4.2",
"jasmine": "^3.5.0",
"jasmine-core": "^3.1.0",
"lint-staged": "^10.0.8",
"mock-fs": "^4.4.1",
"nyc": "^15.0.0",
"prettier": "1.19.1",
"semantic-release": "^15.5.0",
"source-map-support": "^0.5.16",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
},
"snyk": true,
"release": {
"extends": "@labshare/semantic-release-config"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,md}": "npm run lint:fix"
}
}