-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.24 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.24 KB
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
{
"name": "codewriter",
"version": "1.4.0-beta.2",
"description": "Fluent Node library for generating code blocks.",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"watch": "tsc --watch",
"build": "tsc && npm run docs",
"lint": "tslint --project tsconfig.json --format verbose",
"docs": "jsdoc2md ./lib/index.js > ./docs/API.md",
"bump": "npm version prerelease --no-git-tag-version",
"prepublishOnly": "npm run build && npm run lint",
"postpublish": "npm run bump",
"test-harness": "tsc --project ./test-harness/tsconfig.json && node ./test-harness/index"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JeevanJames/codewriter.git"
},
"keywords": [
"code",
"writer",
"builder"
],
"author": "Jeevan James <jeevanjj@live.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/JeevanJames/codewriter/issues"
},
"homepage": "https://github.com/JeevanJames/codewriter#readme",
"devDependencies": {
"@types/node": "^12.12.18",
"jsdoc-to-markdown": "^5.0.3",
"tslint": "^5.20.1",
"typescript": "^3.7.3"
}
}