-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
73 lines (73 loc) · 2.35 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
{
"name": "library-utils",
"version": "3.2.0",
"description": "Utils for component libraries processing and compilation",
"repository": {
"type": "git",
"url": "git+https://github.com/alfa-laboratory/library-utils.git"
},
"author": "Good guys from Alfa Laboratory",
"license": "MIT",
"dependencies": {
"del": "^5.1.0",
"ejs": "^2.7.1",
"event-stream": "^4.0.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clone": "2.0.1",
"gulp-filter": "^5.1.0",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^1.4.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^5.0.1",
"react-component-info": "1.1.2",
"react-docgen": "^4.1.1",
"react-docgen-displayname-handler": "^2.1.3",
"recast": "^0.18.5",
"resolve": "^1.12.0",
"through2": "^3.0.1",
"typescript": "^3.7.3",
"typescript-formatter": "^7.2.2",
"uppercamelcase": "3.0.0",
"vinyl": "^2.2.0"
},
"devDependencies": {
"husky": "^3.1.0",
"arui-presets-lint": "^2.0.0",
"conventional-changelog-cli": "1.3.14",
"conventional-github-releaser": "2.0.0",
"eslint": "^6.6.0",
"eslint-config-airbnb": "18.0.1",
"eslint-plugin-chai-friendly": "0.5.0",
"eslint-plugin-class-methods-use-this-regexp": "0.1.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsdoc": "4.0.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-markdown": "^1.0.0-beta.6",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-sort-class-members": "1.6.0",
"jest": "^24.9.0"
},
"scripts": {
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"github-release": "conventional-github-releaser -p angular",
"lint": "eslint ./*.js ./gulp/*.js ./typings/*.js",
"test": "jest",
"postversion": "git push origin master && git push --tags && npm publish",
"release-patch": "npm version patch -m 'chore(*): patch version'",
"release-minor": "npm version minor -m 'chore(*): minor version'",
"release-major": "npm version major -m 'chore(*): major version'",
"version": "git fetch --tags && npm run changelog && git add CHANGELOG.md"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"./node_modules/arui-presets-lint/commitlint"
]
}
}