-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.13 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
{
"name": "mehrzahl",
"version": "1.1.0",
"description": "Tagged template literals for singular/plural formatting",
"source": "src/index.ts",
"main": "lib/index.js",
"module": "lib/index.module.js",
"unpkg": "lib/index.umd.js",
"types": "lib/index.d.ts",
"files": [
"/lib"
],
"scripts": {
"build": "rimraf lib && microbundle -f cjs,umd src/index.cjs.ts && microbundle -f es,modern src/index.ts",
"prepublishOnly": "npm test && npm run build",
"test": "jest src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JoschuaSchneider/mehrzahl.git"
},
"bugs": {
"url": "https://github.com/JoschuaSchneider/mehrzahl/issues"
},
"homepage": "https://github.com/JoschuaSchneider/mehrzahl#readme",
"keywords": [
"singular/plural",
"tagged-template-literal",
"formatting",
"helper",
"plural-tag"
],
"author": "Joschua Schneider",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.1",
"jest": "^27.2.0",
"microbundle": "^0.13.3",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
}
}