forked from postcss/postcss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.43 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
{
"name": "postcss",
"version": "6.0.22",
"description": "Tool for transforming styles with JS plugins",
"engines": {
"node": ">=4.0.0"
},
"keywords": [
"css",
"postcss",
"rework",
"preprocessor",
"parser",
"source map",
"transform",
"manipulation",
"transpiler"
],
"author": "Andrey Sitnik <andrey@sitnik.ru>",
"license": "MIT",
"homepage": "https://postcss.org/",
"repository": "postcss/postcss",
"dependencies": {
"chalk": "^1.1.3",
"source-map": "^0.6.1",
"supports-color": "^5.4.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-precompile-charcodes": "^1.1.0",
"babel-preset-env": "^1.7.0",
"concat-with-sourcemaps": "^1.1.0",
"del": "^3.0.0",
"docdash": "^0.4.0",
"eslint": "^4.19.1",
"eslint-ci": "^0.1.1",
"eslint-config-postcss": "^2.0.2",
"fs-extra": "^5.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.1",
"gulp-changed": "^3.2.0",
"gulp-json-editor": "^2.3.0",
"gulp-sourcemaps": "^2.6.4",
"jest": "^22.4.3",
"jest-cli": "^22.4.3",
"jsdoc": "^3.5.5",
"lint-staged": "^7.1.0",
"postcss-parser-tests": "^6.2.1",
"pre-commit": "^1.2.2",
"run-sequence": "^2.2.1",
"size-limit": "^0.17.1",
"strip-ansi": "^4.0.0",
"yaspeller-ci": "^1.0.0"
},
"scripts": {
"lint-staged": "lint-staged",
"spell": "yarn docs && yaspeller-ci api/*.html *.md docs/{**/,}*.md",
"docs": "jsdoc -c .jsdocrc lib/*.es6",
"lint": "eslint-ci *.js lib/*.es6 test/*.js",
"test": "gulp && jest && yarn lint && yarn spell && size-limit"
},
"main": "lib/postcss",
"types": "lib/postcss.d.ts",
"lint-staged": {
"test/*.js": "eslint",
"lib/*.es6": "eslint",
"*.md": "yaspeller-ci"
},
"pre-commit": [
"lint-staged"
],
"browser": {
"supports-color": false,
"chalk": false,
"fs": false
},
"size-limit": [
{
"path": "lib/postcss.js",
"limit": "29 KB"
}
],
"jest": {
"testEnvironment": "node",
"modulePathIgnorePatterns": [
"<rootDir>/build"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "eslint-config-postcss",
"rules": {
"consistent-return": "off",
"valid-jsdoc": "error",
"complexity": "off",
"no-new": "off"
},
"env": {
"browser": true,
"jest": true
}
}
}