-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
127 lines (127 loc) · 4.49 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "arui-presets",
"version": "5.1.0",
"description": "Config files for arui-apps",
"author": "Good guys from Alfa Laboratory",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-proto-to-assign": "^7.0.0",
"@babel/plugin-transform-react-constant-elements": "^7.0.0",
"@babel/plugin-transform-react-inline-elements": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime-corejs2": "^7.0.0",
"@commitlint/cli": "6.1.3",
"@commitlint/config-conventional": "6.1.3",
"arui-presets-lint": "^1.0.0",
"autoprefixer": "8.2.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.13",
"case-sensitive-paths-webpack-plugin": "2.1.1",
"command-line-args": "5.0.2",
"compression-webpack-plugin": "1.1.7",
"css-loader": "0.28.9",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "1.1.9",
"find-parent-dir": "0.3.0",
"optimize-css-assets-webpack-plugin": "3.2.0",
"postcss": "6.0.21",
"postcss-calc": "6.0.1",
"postcss-color-function": "4.0.1",
"postcss-custom-media": "6.0.0",
"postcss-custom-properties": "7.0.0",
"postcss-discard-comments": "2.0.4",
"postcss-each": "0.10.0",
"postcss-for": "2.1.1",
"postcss-import": "11.1.0",
"postcss-inherit": "^4.1.0",
"postcss-loader": "2.1.0",
"postcss-mixins": "6.2.0",
"postcss-nested": "3.0.0",
"postcss-omit-import-tilde": "1.0.1",
"postcss-strip-units": "2.0.1",
"postcss-url": "7.3.0",
"react-dev-utils": "5.0.1",
"style-loader": "0.20.2",
"stylelint": "9.2.0",
"url-loader": "0.6.2",
"webpack": "3.11.0",
"webpack-config": "7.5.0",
"webpack-dev-server": "2.11.1",
"webpack-manifest-plugin": "1.3.2"
},
"peerDependencies": {
"eslint": ">= 4.19.0",
"eslint-config-airbnb": ">= 16.1.0",
"eslint-plugin-chai-friendly": ">= 0.4.1",
"eslint-plugin-class-methods-use-this-regexp": ">= 0.1.0",
"eslint-plugin-import": ">= 2.11.0",
"eslint-plugin-jsdoc": ">= 3.6.2",
"eslint-plugin-jsx-a11y": ">= 6.0.3",
"eslint-plugin-react": ">= 7.7.0",
"eslint-plugin-sort-class-members": ">= 1.3.0"
},
"devDependencies": {
"conventional-changelog-cli": "1.3.21",
"conventional-github-releaser": "2.0.2",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-class-methods-use-this-regexp": "^0.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsdoc": "^3.7.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"eslint-plugin-sort-class-members": "^1.3.1",
"husky": "0.14.3",
"lint-staged": "^7.3.0",
"npm-run-all": "4.1.2"
},
"scripts": {
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"commitmsg": "commitlint -e",
"github-release": "conventional-github-releaser -p angular",
"lint": "eslint ./",
"postversion": "git push origin master && git push --tags && npm publish",
"precommit": "lint-staged",
"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": "npm-run-all -pr test:babel test:eslint test:postcss test:stylelint",
"test:babel": "node ./test/babel-test.js",
"test:eslint": "eslint ./test/js-input.jsx",
"test:postcss": "node ./test/postcss-test.js",
"test:stylelint": "node ./test/stylelint-test.js",
"version": "git fetch --tags && npm run changelog && git add CHANGELOG.md"
},
"lint-staged": {
"*.js": [
"eslint"
],
"{babel,babel-node}.js": [
"npm run test:babel"
],
"postcss.js": [
"npm run test:postcss"
],
"stylelint/*.js": [
"npm run test:stylelint"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/alfa-laboratory/arui-presets.git"
},
"bugs": {
"url": "https://github.com/alfa-laboratory/arui-presets/issues"
}
}