-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"name": "@amirhoseinsalimi/ash-template-engine",
"version": "0.0.4",
"description": "I built my own template engine for learning purposes with zero dependencies in TypeScript - It's called Ash",
"main": "index.js",
"author": "Amir Hosein Salimi <ahosein.salimi@gmail.com> (https://github.com/amirhoseinsalimi/)",
"private": true,
"scripts": {
"test": "mocha -r ts-node/register 'test/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amirhoseinsalimi/ash-template-engine.git"
},
"keywords": [
"template-engine",
"js",
"javascript",
"template",
"build-your-own"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/amirhoseinsalimi/ash-template-engine/issues"
},
"homepage": "https://github.com/amirhoseinsalimi/ash-template-engine#readme",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/expect": "^24.3.0",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.11",
"chai": "^4.3.7",
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^10.1.0",
"prettier": "2.8.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"directories": {
"example": "examples",
"test": "test"
}
}