-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.48 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.48 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
{
"name": "@nutgaard/data-pack",
"version": "0.0.1",
"description": "Utility pack for working with random data",
"keywords": [
"data",
"utility"
],
"author": "Nicklas Utgaard",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nutgaard/data-pack"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"dist"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run build-ts && npm run build-tsc",
"build-ts": "node scripts/esbuild.js",
"dev-ts": "node scripts/esbuild.js --watch",
"build-tsc": "tsc",
"dev-tsc": "tsc --watch",
"test": "ts-node test",
"commit": "git-cz",
"prepare": "husky install",
"prettier": "prettier {test,src}/**/*.{js,css,md,ts} --write"
},
"devDependencies": {
"@types/node": "^16.11.10",
"chokidar": "^3.5.2",
"commitizen": "^4.2.4",
"esbuild": "^0.13.15",
"esbuild-node-externals": "^1.4.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"prettier": "^2.4.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"lint-staged": {
"*.{js,css,md,ts}": "prettier --write"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}