-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.23 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
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@prostojs/rewrite",
"version": "0.1.1",
"description": "Easy and light templates renderer",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rollup -c rollup.config.js",
"release": "node ./scripts/release.js",
"test": "jest --runInBand",
"test:cov": "jest --runInBand --coverage",
"lint": "eslint --ext .ts src/**.ts --fix",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prostojs/rewrite.git"
},
"keywords": [
"rewrite",
"template",
"render",
"scaffolding",
"prostojs"
],
"buildOptions": {
"name": "Prostorewrite",
"formats": [
"esm-bundler",
"esm-browser",
"cjs",
"global"
]
},
"dependencies": {
"@prostojs/parser": "^0.5.5",
"minimatch": "^9.0.3"
},
"gitHooks": {
"commit-msg": "node scripts/verifyCommit.js"
},
"author": "Artem Maltsev",
"license": "MIT",
"bugs": {
"url": "https://github.com/prostojs/rewrite/issues"
},
"homepage": "https://github.com/prostojs/rewrite#readme",
"devDependencies": {
"@prostojs/dye": "^0.3.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@types/jest": "^29.5.5",
"@types/node": "^20.11.2",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"conventional-changelog": "^5.1.0",
"conventional-changelog-cli": "^4.1.0",
"enquirer": "^2.4.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"execa": "^5.0.0",
"jest": "^29.7.0",
"minimist": "^1.2.8",
"prettier": "^3.2.2",
"rollup": "^4.9.5",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-typescript2": "^0.36.0",
"semver": "^7.5.4",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"yorkie": "^2.0.0"
}
}