-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.15 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
{
"name": "procurator",
"version": "3.0.1",
"description": "A tiny, stream based replacement template engine.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc --build tsconfig.json",
"dev": "tsc --build -w tsconfig.json",
"prepare": "yarn build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"version": "npm run changelog && git add -A CHANGELOG.md",
"postpublish": "git push upstream master && git push upstream --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpoonX/procurator.git"
},
"keywords": [
"template",
"engine",
"replace",
"stream"
],
"author": "RWOverdijk <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SpoonX/procurator/issues"
},
"homepage": "https://github.com/SpoonX/procurator#readme",
"dependencies": {
"homefront": "^3.0.0"
},
"devDependencies": {
"@types/node": "^10.12.0",
"conventional-changelog-cli": "^2.0.5",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.1.3"
}
}