-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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": "@santi100/coloring-lib",
"version": "1.1.2",
"repository": {
"url": "https://github.com/santi100a/coloring-lib",
"type": "git"
},
"keywords": [
"coloring",
"ansi",
"escape-sequences",
"es3"
],
"description": "Santi's Coloring Library: Make your text look really cool!",
"main": "cjs/index.js",
"author": "santi100a <santyrojasprieto9+npmauthor@gmail.com>",
"module": "./index.mjs",
"license": "MIT",
"dependencies": {
"@santi100/assertion-lib": "^1.0.6",
"remark-validate-links": "^12.1.1"
},
"devDependencies": {
"@types/jest": "^29.4.1",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.39.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.4.3",
"prettier": "^2.8.7",
"remark-cli": "^11.0.0",
"typescript": "^4.9.5"
},
"scripts": {
"build": "tsc",
"test": "jest",
"dev": "tsc -w",
"prettify": "prettier --write src/**/*.ts",
"lint": "eslint src/**/*.ts",
"esm-wrapper": "node scripts/esm-wrapper.js",
"validate-package-json": "node scripts/validate-package-json.js",
"lint-fix": "eslint --fix src/**/*.ts",
"test:watch": "jest --watchAll",
"check-links": "remark --frail ."
}
}