-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.38 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
{
"name": "postcss-exclude-files",
"version": "1.0.15",
"description": "postcss plugin for exclude files from processing",
"main": "./dist/index.js",
"engines": {
"node": ">=4.0.0"
},
"keywords": [
"css",
"postcss",
"rework",
"preprocessor",
"parser",
"transform",
"manipulation",
"exclude",
"ignore",
"filter"
],
"author": "Valeriy Kobzar <kobzarvs@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/anyley/postcss-exclude-files",
"repository": "anyley/postcss-exclude-files",
"dependencies": {
"multimatch": "^2.1.0",
"postcss": "^7.0.5"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"eslint": "^5.7.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-standard": "^4.0.0",
"flow-bin": "^0.83.0",
"flow-typed": "^2.5.1",
"jest": "^23.6.0"
},
"scripts": {
"build": "node ./node_modules/@babel/cli/bin/babel src --out-dir dist",
"test": "npm run eslint && jest",
"eslint": "node node_modules/eslint/bin/eslint __tests__/*.js src/*.js helpers/*.js"
},
"browserslist": [
"last 2 version",
"ie 11"
]
}