-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 1.61 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "xdot",
"version": "2.4.1",
"description": "Small, fast and powerfull temlate engine",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"files": [
"dist",
"browser"
],
"browser": {
"./dist/cjs/index.js": "./browser/xdot.umd.js"
},
"exports": {
".": {
"import": "./browser/xdot.es.js",
"require": "./browser/xdot.umd.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/udamir/xdot"
},
"scripts": {
"build": "tsc && tsc --module commonjs --outDir dist/cjs && vite build",
"test": "jest --verbose",
"prepublish": "rm -r dist || true && npm run build && npm run test",
"test:coverage": "jest --verbose --coverage",
"build:web": "vite build"
},
"keywords": [
"template",
"engine",
"fast",
"simple",
"templating",
"dot",
"mustashe",
"ejs"
],
"author": "Damir Yusipov",
"license": "MIT",
"devDependencies": {
"@types/jest": "^28.1.7",
"@types/node": "^22.3.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"ts-node": "^10.7.0",
"tslint": "^6.1.2",
"typescript": "^5.0.2",
"vite": "^4.0.0",
"vite-plugin-dts": "^4.3.0"
},
"engines": {
"node": ">=16.0.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/test/.*(\\.|/)(test|spec))\\.(ts?|tsx?|js?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
],
"collectCoverage": true
}
}