generated from raphaaj/skeleton-typescript-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.28 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
{
"name": "tablab-i18n",
"version": "1.0.1",
"description": "Internationalized messages for tablab's failed write results",
"keywords": [
"tablab",
"tablature",
"tabs",
"i18n",
"internationalization"
],
"type": "module",
"main": "./lib/index.cjs.cjs",
"module": "./lib/index.es.mjs",
"types": "./lib/index.d.ts",
"exports": {
"require": "./lib/index.cjs.cjs",
"import": "./lib/index.es.mjs",
"types": "./lib/index.d.ts"
},
"files": [
"/lib"
],
"scripts": {
"prebuild": "npm run build:clean",
"build": "rollup -c rollup.config.js",
"postbuild": "rimraf lib/**/",
"build:clean": "rimraf lib",
"test": "jest",
"pretest:coverage": "npm run test:clean",
"test:coverage": "jest --coverage",
"test:clean": "rimraf coverage",
"lint": "eslint ./src ./tests --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint ./src ./tests --ext .js,.jsx,.ts,.tsx --fix",
"prettier:check": "prettier --check ./src ./tests",
"prettier:write": "prettier --write ./src ./tests",
"release": "standard-version",
"release:dry-run": "npm run release -- --dry-run",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/raphaaj/tablab-i18n.git"
},
"author": {
"name": "Raphael Jorge",
"url": "https://github.com/raphaaj"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/raphaaj/tablab-i18n/issues"
},
"homepage": "https://github.com/raphaaj/tablab-i18n#readme",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^6.0.1",
"rollup": "^4.13.2",
"rollup-plugin-dts": "^6.1.0",
"standard-version": "^9.5.0",
"tablab": "^1.0.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"peerDependencies": {
"tablab": "^1.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}