-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 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
{
"name": "arui-demo",
"version": "3.3.0",
"description": "Alfa-Bank UI demo",
"repository": {
"type": "git",
"url": "git+https://github.com/alfa-laboratory/arui-feather.git"
},
"scripts": {
"test": "karma start ./karma.config.js",
"compile": "gulp --cwd . compile",
"lint": "npm run lint-css && npm run lint-js",
"lint-js": "eslint ./*.js ./src --ext .js,.jsx",
"lint-md": "eslint -c .eslintrc.styleguide.js ./src/ --ext .md",
"lint-css": "stylelint ./src/**/*.css",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"github-release": "conventional-github-releaser -p angular",
"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",
"postversion": "npm run pub",
"pub": "npm run compile && cd .publish && npm publish",
"precommit": "lint-staged",
"demo": "styleguidist server",
"lint-staged": "lint-staged",
"build:demo": "styleguidist build"
},
"lint-staged": {
"concurrent": false,
"linters": {
"./*.{js,jsx}": [
"eslint"
],
"*.css": [
"npm run lint-css"
]
}
},
"author": "Good guys from Alfa Laboratory",
"license": "MPL-2.0",
"dependencies": {
"bem-react-classname": "^1.1.0",
"clipboard-copy": "2.0.0",
"gulp-babel": "^8.0.0",
"markdown-to-jsx": "6.6.1",
"prop-types": "15.6.1",
"react-frame-component": "4.1.0",
"react-icons": "2.2.7",
"react-styleguidist": "^10.6.2"
},
"peerDependencies": {
"arui-feather": ">=16.0.3",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@alfalab/core-components-vars": "^2.1.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"arui-feather": "^16.0.3",
"arui-presets": "4.13.4",
"arui-presets-lint": "^1.2.0",
"arui-presets-ts": "3.0.0",
"file-loader": "^5.0.2",
"conventional-changelog-cli": "1.3.21",
"conventional-github-releaser": "2.0.2",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"eslint-plugin-chai-friendly": "^0.4.1",
"husky": "0.14.3",
"jest": "^25.0.0",
"library-utils": "2.4.1",
"lint-staged": "8.1.1",
"webpack": "4.28.0"
},
"optionalDependencies": {
"@alfalab/core-components-vars": "^2.1.0"
}
}