-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 812 Bytes
/
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
{
"name": "path-templater",
"version": "1.0.2",
"description": "This is a simple path template replacement tool for nodejs.",
"author": "kenny wong <[email protected]>",
"license": "MIT",
"type": "module",
"exports": "./lib/index.js",
"types": "./lib/index.d.ts",
"homepage": "https://jaywcjlove.github.io/path-templater",
"funding": "https://jaywcjlove.github.io/#/sponsor",
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/path-templater.git"
},
"keywords": [
"path",
"templater",
"nodejs",
"TypeScript"
],
"files": [
"lib",
"src"
],
"devDependencies": {
"tsbb": "^4.1.4"
},
"scripts": {
"watch": "tsbb watch",
"build": "tsbb build",
"test": "tsbb test",
"coverage": "tsbb test --coverage --bail"
}
}