-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.7 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
{
"name": "arui-presets-ts",
"version": "6.1.1",
"main": "index.js",
"repository": "[email protected]:alfa-laboratory/arui-presets-ts.git",
"author": "Good guys from Alfa Laboratory",
"license": "MIT",
"dependencies": {
"babel-core": "7.0.0-bridge.0",
"babel-loader": "7.1.2",
"ts-loader": "3.5.0",
"typescript": "3.5.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "2.6.1",
"@typescript-eslint/parser": "2.6.1",
"conventional-changelog-cli": "1.3.5",
"conventional-github-releaser": "2.0.0",
"eslint": "6.6.0",
"eslint-import-resolver-typescript": "2.0.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-react-hooks": "2.3.0",
"husky": "0.14.3"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": ">= 2.6.1",
"@typescript-eslint/parser": ">= 2.6.1",
"eslint": ">= 6.6.0",
"eslint-plugin-import": ">= 2.18.2",
"eslint-plugin-react": ">= 7.16.0",
"typescript": ">= 3.2.1"
},
"scripts": {
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"github-release": "conventional-github-releaser -p angular",
"postversion": "git push origin master && git push --tags && npm publish",
"precommit": "npm test",
"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'",
"test": "eslint ./test/ts-input.tsx && tsc --noEmit",
"version": "git fetch --tags && npm run changelog && git add CHANGELOG.md"
},
"bugs": {
"url": "https://github.com/alfa-laboratory/arui-presets-ts/issues"
}
}