forked from diegohaz/nod
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
104 lines (104 loc) · 2.87 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@rjchow/nod",
"version": "1.10.6",
"description": "My node module",
"license": "MIT",
"repository": "rjchow/nod",
"main": "dist/index.js",
"author": {
"name": "Diego Haz",
"email": "[email protected]",
"url": "https://github.com/diegohaz"
},
"files": [
"dist",
"src"
],
"scripts": {
"type-check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "npm test -- --coverage",
"postcoverage": "open-cli coverage/lcov-report/index.html",
"lint": "eslint . --ext js,ts,tsx",
"lint:fix": "npm run lint -- --fix",
"docs": "documentation readme src --section=API",
"postdocs": "git add README.md",
"clean": "rimraf dist",
"prebuild": "npm run docs && npm run clean",
"build": "tsc --emitDeclarationOnly && babel src -d dist --ignore src/**/*.spec.ts,src/**/*.test.ts -x .js,.ts,.tsx",
"preversion": "npm run lint && npm test && npm run build",
"semantic-release": "semantic-release",
"commit": "git-cz",
"commit:retry": "git-cz --retry",
"commitmsg": "commitlint -e",
"commitlint-circle": "commitlint-circle",
"upgrade-deps": "npx updtr"
},
"types": "dist/ts",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix --ext js,ts,tsx",
"git add"
]
},
"keywords": [
"generator-nod"
],
"dependencies": {
"debug": "4.3.2"
},
"devDependencies": {
"@babel/cli": "7.15.7",
"@babel/core": "7.15.8",
"@babel/eslint-parser": "7.15.8",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.14.5",
"@babel/plugin-proposal-optional-chaining": "7.14.5",
"@babel/preset-env": "7.15.8",
"@babel/preset-typescript": "7.15.0",
"@commitlint/cli": "13.2.1",
"@commitlint/config-conventional": "13.2.0",
"@commitlint/prompt": "13.2.1",
"@ls-age/commitlint-circle": "1.0.0",
"@types/debug": "4.1.7",
"@types/jest": "27.0.2",
"@typescript-eslint/eslint-plugin": "5.1.0",
"@typescript-eslint/parser": "5.1.0",
"babel-jest": "27.3.1",
"commitizen": "4.2.4",
"documentation": "13.2.5",
"eslint": "8.1.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-prettier": "4.0.0",
"git-cz": "4.8.0",
"husky": "7.0.4",
"jest": "27.3.1",
"jest-watch-typeahead": "1.0.0",
"lint-staged": "11.2.4",
"open-cli": "7.0.1",
"prettier": "2.4.1",
"rimraf": "3.0.2",
"semantic-release": "18.0.0",
"semantic-release-npm-github-publish": "1.5.1",
"typescript": "4.4.4"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "node_modules/@commitlint/prompt"
}
},
"engines": {
"node": ">= 14.0"
}
}