-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.39 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
{
"name": "@nigelng/tagchecker",
"version": "1.0.0",
"author": "Nigel Nguyen <nigel@nng.me>",
"license": "UNLICENCE",
"repository": {
"type": "git",
"url": "git@github.com:nigelng/tagchecker.git"
},
"packageManager": "yarn@3.2.1",
"engines": {
"node": ">= 16"
},
"scripts": {
"clean": "rimraf -rf lib",
"lint": "eslint --fix src/**",
"pretest": "yarn lint",
"test": "cross-env NODE_PATH=./src jest --config .jestrc.json",
"prebuild": "yarn clean",
"build": "babel src -d dist",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"debug": "cross-env NODE_PATH=./src ./node_modules/.bin/nodemon --exec babel-node --inspect=9220 src/index",
"start": "NODE_PATH=./dist NODE_ENV=production node dist"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.5",
"@babel/node": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@nigelng/eslint-config-base": "^1.0.0",
"@nigelng/prettier-config": "^1.0.0",
"babel-preset-minify": "^0.5.2",
"cross-env": "^7.0.3",
"eslint": "^8.18.0",
"husky": "^8.0.1",
"jest": "^28.1.1",
"lint-staged": "^13.0.2",
"nodemon": "^2.0.16",
"pinst": "^3.0.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2"
},
"dependencies": {
"pino": "^8.1.0",
"pino-pretty": "^8.1.0",
"ramda": "^0.28.0"
}
}