-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
87 lines (87 loc) · 2.07 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
{
"name": "ng-custom-element",
"version": "2.0.0",
"repository": "git@github.com:JamesHenry/ng-custom-element.git",
"author": "James Henry <james@henry.sc>",
"contributors": [
{
"name": "George Kalpakas",
"url": "https://github.com/gkalpak"
}
],
"license": "MIT",
"main": "dist/ng-custom-element.js",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "microbundle --entry src/index.ts",
"dev": "microbundle watch --entry src/index.ts",
"test": "jest",
"format": "prettier --write \"./{src,example}/*.{ts,js,json,md}\"",
"format:check": "prettier --list-different \"./{src,example}/*.{ts,js,json,md}\"",
"cz": "git-cz",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@commitlint/travis-cli": "^7.2.1",
"@types/jest": "^23.3.1",
"angular": "~1.3.20",
"angular-mocks": "~1.3.20",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.1.3",
"jest": "^23.5.0",
"lint-staged": "^8.0.4",
"microbundle": "0.7.0",
"prettier": "^1.14.2",
"semantic-release": "^15.10.8",
"travis-deploy-once": "^5.0.9",
"ts-jest": "^23.1.4",
"typescript": "^3.1.6"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"lint-staged": {
"*.{ts,js,json,md}": [
"prettier --write",
"git add"
],
"./src/**/*.{ts,js,json,md}": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm test && lint-staged"
}
}
}