-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.78 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
{
"name": "@cdab/utils",
"keywords": ["utils", "typescript", "scroll"],
"version": "0.1.0",
"description": "Some utils that could come in handy",
"homepage": "https://github.com/congenialdata/cdab-utils#readme",
"main": "lib/index",
"typings": "lib/index",
"scripts": {
"build": "tsc -p .",
"check-format": "npm run prettier -- --list-different",
"check-types:watch": "tsc --noEmit --watch",
"check-types": "tsc",
"commit": "git-cz",
"lint:errors": "npm run lint -- --quiet",
"lint:fix": "npm run lint -- --fix",
"lint": "eslint --ignore-path .gitignore './src/**/*.{js,ts,json}'",
"prettier": "prettier --ignore-path --write './src/*.+(ts|json)'",
"push": "git add -A && && git commit npm version patch -m \"Bump package version to %s\" && git push && git push --tags && npm publish",
"release": "standard-version",
"validate": "npm-run-all --parallel check-types check-format lint build"
},
"dependencies": {},
"devDependencies": {
"@types/node": "14.14.28",
"@typescript-eslint/eslint-plugin": "4.0.0",
"@typescript-eslint/parser": "3.10.1",
"commitizen": "4.2.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.20.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-prettier": "3.3.1",
"husky": "5.1.1",
"lint-staged": "10.5.4",
"npm-run-all": "4.1.5",
"prettier": "2.2.1",
"standard-version": "9.1.0",
"tslib": "2.1.0",
"typescript": "4.2.2"
},
"repository": {
"type": "git",
"url": "git@github.com:CongenialData/cdab-utils.git"
},
"bugs": {
"url": "https://github.com/CongenialData/cdab-utils/issues"
},
"author": "Congenial Data AB",
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}