-
-
Notifications
You must be signed in to change notification settings - Fork 189
/
package.json
164 lines (164 loc) · 4.99 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
{
"name": "postcss-cssnext",
"version": "3.1.0",
"description": "Use tomorrow’s CSS syntax, today",
"keywords": ["postcss", "postcss-plugin", "css", "w3c", "cssnext"],
"author": "Maxime Thirouin",
"license": "MIT",
"repository": "https://github.com/MoOx/postcss-cssnext.git",
"homepage": "http://cssnext.io/",
"main": "lib/index.js",
"files": ["docs/content", "lib", "src", "!**/__tests__"],
"dependencies": {
"autoprefixer": "^7.1.1",
"caniuse-api": "^2.0.0",
"chalk": "^2.0.1",
"pixrem": "^4.0.0",
"pleeease-filters": "^4.0.0",
"postcss": "^6.0.5",
"postcss-apply": "^0.8.0",
"postcss-attribute-case-insensitive": "^2.0.0",
"postcss-calc": "^6.0.0",
"postcss-color-function": "^4.0.0",
"postcss-color-gray": "^4.0.0",
"postcss-color-hex-alpha": "^3.0.0",
"postcss-color-hsl": "^2.0.0",
"postcss-color-hwb": "^3.0.0",
"postcss-color-rebeccapurple": "^3.0.0",
"postcss-color-rgb": "^2.0.0",
"postcss-color-rgba-fallback": "^3.0.0",
"postcss-custom-media": "^6.0.0",
"postcss-custom-properties": "^6.1.0",
"postcss-custom-selectors": "^4.0.1",
"postcss-font-family-system-ui": "^3.0.0",
"postcss-font-variant": "^3.0.0",
"postcss-image-set-polyfill": "^0.3.5",
"postcss-initial": "^2.0.0",
"postcss-media-minmax": "^3.0.0",
"postcss-nesting": "^4.0.1",
"postcss-pseudo-class-any-link": "^4.0.0",
"postcss-pseudoelements": "^5.0.0",
"postcss-replace-overflow-wrap": "^2.0.0",
"postcss-selector-matches": "^3.0.1",
"postcss-selector-not": "^3.0.1"
},
"peerDependencies": {
"caniuse-lite": "^1.0.30000697"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-eslint": "^8.2.1",
"babel-loader": "^6.2.4",
"babel-preset-env": "^1.0.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-3": "^6.24.1",
"babel-tape-runner": "^2.0.1",
"classnames": "^2.1.1",
"css-loader": "^0.28.9",
"eslint": "^3.0.0",
"eslint-config-i-am-meticulous": "^7.0.0",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"highlight.js": "^8.6.0",
"husky": "^0.14.3",
"isogram": "^0.5.0",
"js-yaml": "^3.3.1",
"markdown-it": "^4.2.1",
"markdown-it-toc-and-anchor": "^1.0.1",
"metalsmith": "^2.0.1",
"metalsmith-collections": "^0.7.0",
"metalsmith-filenames": "^1.0.0",
"metalsmith-md": "^2.0.1",
"metalsmith-react": "^2.0.1",
"metalsmith-rename": "^1.0.0",
"metalsmith-rss": "^1.0.0",
"metalsmith-url": "^1.0.0",
"metalsmith-watch": "^1.0.1",
"nano-logger": "^1.0.0",
"node-libs-browser": "^0.5.0",
"npmpub": "^3.1.0",
"object-assign": "^3.0.0",
"opn": "^1.0.2",
"prettier": "^1.10.2",
"pretty-quick": "^1.2.2",
"prop-types": "^15.5.10",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"react-svg-inline": "^1.0.1",
"rimraf": "^2.4.3",
"strip-ansi": "^4.0.0",
"style-loader": "^0.19.1",
"tape": "^4.2.0",
"to-slug-case": "^0.1.2",
"uglifyjs-webpack-plugin": "^1.1.6",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.11.0",
"webpack-nano-logs": "^1.0.0"
},
"scripts": {
"precommit": "pretty-quick --staged",
"format": "prettier --write \"**/*.{js,json,css,md}\"",
"prebabelify": "rimraf lib",
"babelify": "babel src --out-dir lib",
"prepare": "npm run babelify",
"#lint":
"even if there is a .eslintignore symlink, we use an explicit command because windows don't like unix symlink",
"lint": "eslint --ignore-path .gitignore .",
"#tape":
"to avoid really slow tests, we run babel once & run tests on the result",
"tape": "tape \"lib/__tests__/*.js\"",
"test": "npm run lint && npm run babelify && npm run tape",
"docs-build": "babel-node docs/scripts/build",
"predocs-start": "npm run prepare",
"docs-start": "npm run docs-build -- --dev --dev-server --open",
"docs-test": "npm run docs-build -- --production",
"_docs-deploy":
"GIT_DEPLOY_DIR=docs/dist ./docs/scripts/deploy-to-gh-pages.sh -v",
"docs-deploy": "npm run docs-test && npm run _docs-deploy",
"release": "npmpub",
"postrelease": "npm run docs-deploy"
},
"babel": {
"presets": [
"babel-preset-react",
[
"babel-preset-env",
{
"targets": {
"node": "4.0"
}
}
],
"babel-preset-stage-3"
],
"env": {
"browsers": {
"presets": [
"babel-preset-react",
[
"babel-preset-env",
{
"targets": {
"browsers": ["last 5 versions"]
}
}
],
"babel-preset-stage-3"
]
}
}
},
"eslintConfig": {
"extends": "eslint-config-i-am-meticulous/react",
"rules": {
"import/order": "off",
"import/default": "off",
"react/prefer-stateless-function": "off"
}
},
"prettier": {
"proseWrap": "always"
}
}