-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.42 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
{
"name": "xylo",
"version": "0.0.5",
"description": "Xylo.js is a static site generator using pure HTML template like Vue.js and Thymeleaf.",
"author": "Toshitaka Agata",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/agata/xylo.git"
},
"bugs": {
"url": "https://github.com/agata/xylo/issues"
},
"homepage": "https://github.com/agata/xylo",
"keywords": [
"static",
"site",
"generator",
"template"
],
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"test": "jest",
"lint": "tslint -c tslint.json 'src/**/*.ts' 'test/**/*.ts'",
"build": "rm -Rf lib && mkdir lib && npm run lint && tsc",
"publish": "npm publish --access=public",
"prepublishOnly": "npm run build"
},
"dependencies": {
"jexl": "^2.2.2",
"parse5": "^5.1.0"
},
"devDependencies": {
"@types/jest": "^24.0.21",
"@types/jexl": "^2.1.0",
"@types/node": "^12.12.5",
"@types/parse5": "^5.0.2",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"typescript": "^3.6.4"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testMatch": [
"**/test/**/*.test.ts"
],
"moduleNameMapper": {
"^#/(.+)": "<rootDir>/src/$1"
}
}
}