UNPKG

781 BJSONView Raw
1{
2 "name": "apexlint",
3 "version": "1.7.0",
4 "description": "An Apex linter written in TypeScript.",
5 "main": "main.js",
6 "author": "Renato Oliveira",
7 "license": "MIT",
8 "repository": {
9 "type": "git",
10 "url": "git+https://github.com/renatoliveira/apexlint.git"
11 },
12 "private": false,
13 "dependencies": {
14 "@types/mocha": "^2.2.48",
15 "@types/node": "^9.4.6",
16 "chai": "^4.1.2",
17 "chalk": "^2.3.2",
18 "mocha": "^5.0.1",
19 "ts-node": "^5.0.1",
20 "tslint": "^5.9.1",
21 "typescript": "^2.7.2"
22 },
23 "scripts": {
24 "test": "mocha -r ts-node/register tests/*.spec.ts",
25 "build": "tsc -p tsconfig.json",
26 "build-dist": "rm -rf dist/* && tsc -p tsconfig-dist.json"
27 },
28 "bin": {
29 "apexlint": "./dist/Main.js"
30 },
31 "preferGlobal": true
32}