-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.25 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-light-text",
"version": "0.0.1",
"description": "PostCSS plugin that adds webkit antialiasing for light text",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"text",
"antialiasing",
"legibility"
],
"author": "James Steinbach <[email protected]>",
"license": "MIT",
"repository": "jdsteinbach/postcss-light-text",
"bugs": {
"url": "https://github.com/jdsteinbach/postcss-light-text/issues"
},
"homepage": "https://github.com/jdsteinbach/postcss-light-text",
"dependencies": {
"postcss": "^6.0.1",
"tinycolor2": "^1.4.1"
},
"devDependencies": {
"babel-jest": "^21.2.0",
"eslint": "^3.19.0",
"eslint-config-postcss": "^2.0.2",
"jest-cli": "^21.2.1",
"underscore-node": "^0.1.2"
},
"scripts": {
"test": "jest && eslint *.js"
},
"jest": {
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
}
},
"eslintConfig": {
"extends": "eslint-config-postcss/es5",
"env": {
"jest": true
},
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
},
"presets": [
"es2015"
],
"rules": {
"indent": [
1,
2
]
}
}
}