-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.21 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
{
"name": "@b4dnewz/string-template",
"version": "0.0.1",
"description": "A utility to format strings with many options",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"prepublishOnly": "npm run build",
"pretest": "npm run lint",
"prebuild": "npm run test",
"lint": "tslint -p . --fix",
"test": "jest",
"test:cover": "jest --coverage",
"build": "tsc --build"
},
"author": {
"name": "b4dnewz",
"email": "filippo@codekraft.it",
"url": "https://b4dnewz.github.io/"
},
"repository": "b4dnewz/string-template",
"license": "MIT",
"keywords": [
"string",
"template",
"string-formatter",
"string-manipulation",
"string-template",
"utility",
"string-utility",
"templating",
"template-engine",
"replacement"
],
"devDependencies": {
"@types/jest": "^24.0.23",
"coveralls": "^3.0.7",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.1",
"typescript": "^3.7.2"
},
"publishConfig": {
"access": "public"
}
}