-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.3 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.3 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
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
105
106
107
108
109
{
"name": "library-stack-node",
"version": "0.0.1",
"description": "Library Stack for Node.js projects",
"license": "MIT",
"main": "dist-cjs/index.js",
"module": "dist-esm/index.js",
"types": "dist-types/index.d.ts",
"sideEffects": false,
"files": [
"/dist-esm",
"/dist-cjs",
"/dist-types"
],
"homepage": "https://github.com/andreidmt/tpl-node",
"repository": {
"type": "git",
"url": "git+https://github.com/andreidmt/tpl-node.git"
},
"bugs": {
"url": "https://github.com/andreidmt/tpl-node/issues"
},
"author": {
"name": "Andrei Dumitrescu",
"url": "https://github.com/andreidmt"
},
"keywords": [
"nodejs",
"typescript",
"esm",
"tape",
"eslint",
"prettier",
"lintstaged",
"commitlint",
"markdownlint",
"circleci",
"semantic-release",
"coveralls",
"swc",
"c8"
],
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {
"----UTIL": "",
"prepare": "git config --local core.hooksPath .githook",
"setup": "npm install",
"update": "npm-check --update",
"postupdate": "npm audit --fix",
"----BUILD": "",
"build.types": "tsc --emitDeclarationOnly --outDir dist-types",
"build.js-esm": "swc src --out-dir dist-esm --config module.type=es6",
"build.js-cjs": "swc src --out-dir dist-cjs --config module.type=commonjs",
"prebuild": "rm -rf dist-cjs dist-esm dist-types",
"build": "npm run build.js-esm && npm run build.js-cjs && npm run build.types",
"----LINT": "",
"lint.js": "eslint --quiet src",
"lint.js-staged": "eslint --quiet",
"lint.md": "markdownlint '*.md' --ignore CHANGELOG.md",
"lint.md-staged": "markdownlint --ignore CHANGELOG.md",
"lint": "npm run lint.js && npm run lint.md",
"typecheck": "tsc --noEmit",
"----TEST": "",
"test": "tape -r swc-register 'src/*.test.ts' 'src/**/*.test.ts' | tap-nirvana",
"tdd": "nodemon --watch src --ext js,ts,json --exec 'npm test'",
"----TEST-COVERAGE": "",
"precoverage": "rm -rf coverage",
"coverage": "c8 npm test && c8 report --reporter=text-lcov | coveralls",
"----BENCHMARK": "",
"prebenchmark": "rm -rf benchmark",
"benchmark": "node -r swc-register src/**/*.bench.ts",
"----PUBLISH": "",
"publish": "semantic-release"
},
"devDependencies": {
"@asd14/eslint-config": "^6.10.0",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@swc/cli": "^0.1.52",
"@swc/core": "^1.2.113",
"@types/tape": "^4.13.2",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"benny": "^3.7.1",
"c8": "^7.10.0",
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-no-inferred-method-name": "^2.0.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-unicorn": "^39.0.0",
"lint-staged": "^12.1.2",
"markdownlint-cli": "^0.30.0",
"nodemon": "^2.0.15",
"npm-check": "^5.9.2",
"prettier": "^2.5.0",
"semantic-release": "^18.0.1",
"swc-register": "^1.0.2",
"tap-nirvana": "^1.1.0",
"tape": "^5.3.2",
"typescript": "^4.5.2"
}
}