-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
79 lines (79 loc) · 1.89 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
{
"name": "babel-plugin-transform-postcss",
"version": "0.2.1",
"description": "PostCSS Babel Transform",
"main": "index.js",
"scripts": {
"test": "eslint . && flow check && BABEL_ENV=coverage nyc mocha",
"build": "babel src --copy-files --out-dir dist",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/wbyoung/babel-plugin-transform-postcss"
},
"nyc": {
"include": [
"src/**/*.js"
],
"exclude": [
"coverage/**",
"dist/**"
],
"reporter": [
"lcov",
"html",
"text"
],
"all": true,
"check-coverage": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"sourceMap": false,
"instrument": false,
"temp-directory (pending-accepted-pr)": "coverage/nyc"
},
"author": "Whitney Young",
"license": "MIT",
"bugs": {
"url": "https://github.com/wbyoung/babel-plugin-transform-postcss/issues"
},
"keywords": [
"postcss",
"postcss-modules",
"babel",
"babel-transform",
"css-modules"
],
"homepage": "https://github.com/wbyoung/babel-plugin-transform-postcss",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.0",
"babel-eslint": "^8.0.0",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-transform-flow-strip-types": "^6.21.0",
"babel-preset-env": "^1.1.8",
"babel-register": "^6.18.0",
"chai": "^4.0.2",
"chai-string": "^1.3.0",
"eslint": "^4.1.0",
"eslint-plugin-flowtype": "^2.29.2",
"flow-bin": "^0.61.0",
"mocha": "^5.0.0",
"nyc": "^11.0.1",
"postcss": "^6.0.7",
"postcss-modules": "^1.0.0",
"sinon": "^4.0.1",
"sinon-chai": "^2.8.0",
"string-hash": "^1.1.1"
},
"peerDependencies": {
"postcss": "^6.0.6 || ^7.0.0"
},
"dependencies": {
"debug": "^3.0.0",
"postcss-load-config": "^1.1.0"
}
}