-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.39 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
{
"name": "postcss-modules-extend-rule",
"version": "0.1.0",
"description": "PostCSS plugin set for using extend at-rule with CSS Modules.",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"css-modules",
"extend",
"extend-from"
],
"author": "Tomasz Sodzawiczny <[email protected]>",
"license": "MIT",
"repository": "tomasz-sodzawiczny/postcss-modules-extend-rule",
"homepage": "https://github.com/tomasz-sodzawiczny/postcss-modules-extend-rule#readme",
"main": "index.js",
"files": [
"index.js",
"pre.js",
"post.js"
],
"scripts": {
"prepublishOnly": "yarn build",
"build": "rollup --config",
"test": "yarn lint && yarn run-tests",
"pretest": "yarn build",
"lint": "eslint src/**/*.js",
"run-tests": "yarn build-test-project && yarn jest",
"build-test-project": "cd __test_project__ && yarn && yarn build"
},
"dependencies": {
"postcss": "^7.0.14",
"postcss-extend-rule": "^2.0.0",
"postcss-plugin-chain": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"eslint": "^5.14.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^24.1.0",
"prettier": "^1.16.4",
"rollup": "^1.2.3",
"rollup-plugin-babel": "^4.3.2"
}
}