-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.34 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.34 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
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
{
"name": "@scitizen/ts-node-lib-boilerplate",
"version": "0.0.0",
"description": "A simple boilerplate for Scitizen typescript node libs",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/Scitizen/ts-node-lib-boilerplate.git"
},
"bugs": {
"url": "https://github.com/Scitizen/ts-node-lib-boilerplate/issues"
},
"homepage": "https://github.com/Scitizen/ts-node-lib-boilerplate#readme",
"author": "GerkinDev",
"keywords": [
"typescript",
"node",
"boilerplate",
"scitizen"
],
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:watch": "npm run build -- --watch",
"format:pkg": "format-package --write",
"lint": "eslint --config .eslintrc.js '{,{src,__tests__}/**/}*.{j,t}s{,x}'",
"lint:commit-message:current": "commitlint -E HUSKY_GIT_PARAMS",
"lint:fix": "npm run lint -- --fix",
"precommit": "npm run lint && npm run test && npm run build",
"prepare": "rm -rf dist && npm run build",
"release": "standard-version",
"test": "npm run test:unit && npm run test:integration",
"test:integration": "jest --config jest.integration.config.js",
"test:integration:watch": "npm run test:integration -- --watch",
"test:unit": "jest --config jest.unit.config.js",
"test:unit:watch": "npm run test:unit -- --watch"
},
"husky": {
"hooks": {
"commit-msg": "npm run lint:commit-message:current",
"pre-commit": "npm run precommit"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@scitizen/eslint-config": "^1.1.0",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.13",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-sort-export-all": "^1.1.1",
"format-package": "^6.1.0",
"husky": "^4.3.7",
"jest": "^26.6.3",
"standard-version": "^9.1.0",
"ts-jest": "^26.4.4",
"tslint": "^6.1.3",
"tslint-eslint-rules": "^5.4.0",
"ttypescript": "^1.5.12",
"typescript": "^4.1.3"
}
}