-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 923 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
36
37
38
39
40
{
"name": "@redaty/lejs",
"version": "1.0.5",
"description": "Lionel Embedded JavaScript Templates",
"main": "dist/lejs.js",
"types": "dist/lejs.d.ts",
"directories": {
"lib": "src/lib"
},
"files": ["dist"],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "jest",
"build and test": "tsc && jest",
"start": "node ./dist/bin/cli.ts"
},
"bin": {
"lejs": "./dist/bin/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Reterics/lejs.git"
},
"keywords": [
"template"
],
"author": "Attila Reterics <attila@reterics.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Reterics/lejs/issues"
},
"homepage": "https://github.com/Reterics/lejs#readme",
"devDependencies": {
"typescript": "^5.2.2",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.5",
"ts-jest": "^29.1.1"
}
}