-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.72 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
{
"name": "string-object-formatter",
"version": "3.0.0",
"description": "Python inspired named template formatter for Javascript strings",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"sideEffects": false,
"author": "Alberto Rico",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alrico88/string-object-formatter"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vitest/coverage-c8": "^0.24.3",
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.2",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"tsup": "^6.2.3",
"typedoc": "^0.23.16",
"typedoc-plugin-markdown": "^3.13.6",
"typescript": "^4.8.4",
"vitest": "^0.24.3"
},
"scripts": {
"dev": "pnpm run build -- --watch src",
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"test": "vitest run",
"coverage": "vitest run --coverage",
"lint": "eslint --cache --fix --ignore-path .gitignore --ext .ts,.js src",
"docs": "typedoc src/index.ts --readme README.md --gitRevision master",
"prepublish": "pnpm run build",
"coveralls": "vitest run --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"keywords": [
"strings",
"format",
"object",
"python"
]
}