-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.02 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
{
"name": "abs-template",
"version": "1.2.0",
"description": "Parse and compile template partials in static HTMLs",
"types": "dist/abs-template.d.ts",
"browser": "dist/abs-template.js",
"scripts": {
"cleanDist": "rimraf dist",
"buildTypescript": "tsc",
"copyTypescript": "copyfiles -f ./src/*.ts dist",
"generateNxScript": "node ./build-utils/generateNxScript.js ./dist/abs-template.js",
"build": "npm run cleanDist && npm run buildTypescript && npm run copyTypescript && npm run generateNxScript"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Abstractn/abs-template.git"
},
"keywords": [
"parse",
"compile",
"handlebars like",
"template",
"dynamic",
"html",
"reusable"
],
"author": "Abstractn",
"license": "MIT",
"bugs": {
"url": "https://github.com/Abstractn/abs-template/issues"
},
"homepage": "https://github.com/Abstractn/abs-template#readme",
"devDependencies": {
"rimraf": "^5.0.5",
"typescript": "^5.2.2"
}
}