-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 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
55
56
57
58
59
60
{
"name": "postcss-retina",
"version": "1.2.0",
"description": "Automatically transform your border in retina without change anything.",
"main": "./lib/index.js",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"1px border",
"retina"
],
"engines": {
"node": ">=6.0.0"
},
"files": [
"lib"
],
"author": "ziphwy <[email protected]>",
"license": "MIT",
"repository": "Ziphwy/postcss-retina",
"bugs": {
"url": "https://github.com/Ziphwy/postcss-retina/issues"
},
"homepage": "https://github.com/Ziphwy/postcss-retina",
"dependencies": {
"postcss": "^6.0.1"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.36",
"@types/jest": "^22.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.1.2",
"babel-jest": "^22.0.4",
"babel-preset-env": "^1.6.1",
"coveralls": "^3.0.0",
"eslint": "^3.19.0",
"eslint-config-postcss": "^2.0.2",
"jest": "^22.0.4",
"regenerator-runtime": "^0.11.1"
},
"scripts": {
"test": "jest && eslint *.js",
"test:update": "jest -u",
"coverage": "jest --coverage",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls"
},
"eslintConfig": {
"extends": "eslint-config-postcss",
"parser": "babel-eslint",
"env": {
"jest": true
}
},
"jest": {
"transform": {
"^.*\\.spec\\.js$": "babel-jest"
}
}
}