-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.59 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
{
"name": "@dlukanin/cla-mapper",
"version": "1.2.2",
"description": "Command line args mapper. A small library that processes js object and returns ready for use array of command line args",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"test": "jest --runInBand --coverage",
"build": "rm -rf ./build && tsc --project tsconfig.json",
"lint": "eslint -c .eslintrc.js 'src/**/*.ts' --fix && eslint -c .eslintrc.js --parser-options=project:'tsconfig.tests.json' 'test/**/*.ts' --fix",
"ci-lint": "eslint -c .eslintrc.js 'src/**/*.ts' && eslint -c .eslintrc.js --parser-options=project:'tsconfig.tests.json' 'test/**/*.ts'",
"pretest": "npm run build",
"coverage": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dlukanin/cla-mapper.git"
},
"keywords": [
"cla",
"args",
"command-line",
"mapper"
],
"author": "Dmitry Lukanin (dylukanin@gmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dlukanin/cla-mapper/issues"
},
"homepage": "https://github.com/dlukanin/cla-mapper#readme",
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^12.20.23",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsdoc": "^36.0.8",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jest": "^27.1.0",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
}
}