UNPKG

1.96 kBJSONView Raw
1{
2 "name": "@balena/lint",
3 "version": "5.4.0",
4 "description": "Balena.io tslint, coffeelint & coffeescope2 wrapper",
5 "bin": {
6 "balena-lint": "./bin/balena-lint"
7 },
8 "main": "./lib/balena-lint.js",
9 "homepage": "https://github.com/balena-io-modules/node-balena-lint",
10 "repository": {
11 "type": "git",
12 "url": "git@github.com:balena-io-modules/node-balena-lint"
13 },
14 "scripts": {
15 "build": "tsc && npm run prettify && npm run lint",
16 "lint": "node ./bin/balena-lint --typescript lib/",
17 "prepublish": "require-npm4-to-publish",
18 "prepublishOnly": "npm run test",
19 "prettify": "node ./bin/balena-lint --typescript --fix lib/",
20 "test": "npm run build && npm run test:coffeescript && npm run test:typescript && npm run test:typescript-no-prettier",
21 "test:coffeescript": "node ./bin/balena-lint test/coffeescript -i",
22 "test:typescript": "node ./bin/balena-lint test/typescript/prettier --typescript -i",
23 "test:typescript-no-prettier": "node ./bin/balena-lint test/typescript/no-prettier --typescript -i --no-prettier"
24 },
25 "keywords": [
26 "balena",
27 "coffeescript",
28 "coffeelint"
29 ],
30 "author": "Balena.io. <hello@balena.io>",
31 "license": "Apache 2.0",
32 "dependencies": {
33 "@types/glob": "^7.1.3",
34 "@types/lodash": "^4.14.167",
35 "@types/node": "^10.17.51",
36 "@types/optimist": "0.0.29",
37 "@types/prettier": "^2.1.6",
38 "coffee-script": "^1.10.0",
39 "coffeelint": "^1.15.0",
40 "coffeescope2": "^0.4.5",
41 "depcheck": "^1.3.1",
42 "glob": "^7.1.6",
43 "lodash": "^4.17.20",
44 "optimist": "^0.6.1",
45 "prettier": "^2.2.1",
46 "tslint": "^6.1.3",
47 "tslint-config-prettier": "^1.18.0",
48 "tslint-no-unused-expression-chai": "^0.1.4",
49 "typescript": "^4.1.3"
50 },
51 "devDependencies": {
52 "husky": "^4.3.7",
53 "lint-staged": "^10.5.3",
54 "require-npm4-to-publish": "^1.0.0"
55 },
56 "husky": {
57 "hooks": {
58 "pre-commit": "lint-staged"
59 }
60 }
61}