-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.61 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
{
"name": "numero-a-texto",
"version": "1.0.0",
"description": "Translate numbers to spanish",
"keywords": [
"spanish",
"translation",
"numbers",
"cardinal"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/rolivares/numero-a-texto-es-js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"categories": [
"Formatters"
],
"author": "Rodrigo Olivares <olivares.rodrigo@gmail.com>",
"license": "MIT",
"scripts": {
"test": "mocha --config .mocharc.json --reporter mocha-multi-reporters",
"test:watch": "mocha --watch --watch-files src,test --reporter mocha-multi-reporters",
"test:coverage": "nyc mocha --config .mocharc.json",
"test:sonar": "sonar-scanner -D sonar.projectKey=${npm_package_name} -D sonar.projectVersion=${npm_package_version}",
"update": "updates --update --minor && npm install",
"clean": "rimraf ./dist",
"build": "tsc -p tsconfig.build.json",
"lint": "eslint src test",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier src test --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"prepack": "npm run build",
"prepare": "husky install"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/module-alias": "^2.0.1",
"@types/node": "^16.18.11",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"app-root-path": "^3.1.0",
"chai": "^4.3.7",
"eslint": "^8.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-anti-trojan-source": "^1.1.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-security": "^1.6.0",
"husky": "^8.0.3",
"mkdirp": "^2.1.3",
"mocha": "^10.2.0",
"mocha-junit-reporter": "^2.2.0",
"mocha-multi-reporters": "^1.5.1",
"mochawesome": "^7.1.3",
"module-alias": "^2.2.2",
"nyc": "^15.1.0",
"nyc-dark": "^3.0.3",
"prettier": "^2.8.3",
"reflect-metadata": "^0.1.13",
"rimraf": "^4.1.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.4",
"updates": "^13.2.8"
},
"husky": {
"pre-commit": "npm run lint"
}
}