-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1007 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1007 Bytes
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
{
"name": "str-template-ts",
"version": "0.0.2",
"license": "MIT",
"main": "lib/index.js",
"description": "A fast and simple string templating library, written in TypeScript",
"types": "lib/index.d.ts",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.11.10",
"jest": "^29.5.0",
"nodemon": "^3.0.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"scripts": {
"build": "tsc",
"test": "jest --config jestconfig.json",
"test:watch": "jest --config jestconfig.json --watchAll",
"main": "nodemon ./src/main.ts",
"prepare": "npm run build"
},
"files": [
"lib/index.js",
"lib/index.d.ts"
],
"homepage": "https://github.com/p32929/str_template",
"repository": {
"type": "git",
"url": "git+https://github.com/p32929/str_template.git"
},
"keywords": [
"simple",
"fast",
"easy",
"string",
"template",
"typescript",
"nodejs"
],
"author": "p32929"
}