-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.45 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
{
"name": "adze",
"version": "0.0.0-development",
"description": "A library for shaping your logs.",
"main": "./dist/index.js",
"sideEffects": false,
"engines": {
"node": ">=10"
},
"files": [
"dist/**/*"
],
"scripts": {
"prebuild": "npm run clean",
"build": "tsc --project tsconfig.prod.json",
"postbuild": "npm run bundle",
"clean": "rm -rf ./dist",
"bundle": "parcel build ./src/index.ts --global AdzeLib --out-file adze.min.js --no-source-maps",
"bundle:watch": "parcel watch ./src/index.ts --global AdzeLib --out-file adze.min.js --no-source-maps",
"commit": "cz",
"prepare": "husky install",
"prepack": "npm run build",
"predemo:browser": "npm run build",
"demo:browser": "http-server -o -p 8082",
"demo:node": "ts-node ./demo.ts",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "ava",
"watch": "tsc --watch",
"semantic-release": "semantic-release"
},
"homepage": "http://adzejs.com/",
"repository": {
"type": "git",
"url": "https:[email protected]:AJStacy/Adze.git"
},
"keywords": [
"log",
"logging",
"logger",
"typescript"
],
"types": "./dist/index.d.ts",
"author": "Andrew Stacy",
"license": "Apache-2.0",
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@types/jsdom": "^16.2.3",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"ava": "^3.15.0",
"browser-env": "^3.3.0",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.2.0",
"date-fns": "^2.23.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"http-server": "^0.11.1",
"husky": "^6.0.0",
"jsdom": "^16.3.0",
"lint-staged": "^10.5.4",
"parcel-bundler": "^1.12.5",
"prettier": "2.2.1",
"semantic-release": "^17.4.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"vuepress": "^1.8.2",
"window": "^4.2.6"
},
"dependencies": {
"@types/lodash.clonedeep": "^4.5.6",
"@types/lodash.defaultsdeep": "^4.6.6",
"@types/node": "^12.7.5",
"chalk": "^4.1.0",
"lodash.clonedeep": "^4.5.0",
"lodash.defaultsdeep": "^4.6.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": "eslint --cache --cache-location .eslint_cache --fix"
}
}