-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 1.94 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
{
"name": "postcss-theme-ui",
"version": "0.10.0",
"description": "PostCSS plugin for accessing Theme UI variables",
"author": "Aaron Noel De Leon <[email protected]>",
"license": "CC0-1.0",
"repository": "nelonoel/postcss-theme-ui",
"homepage": "https://github.com/nelonoel/postcss-theme-ui#readme",
"bugs": "https://github.com/nelonoel/postcss-theme-ui/issues",
"main": "index.js",
"module": "index.mjs",
"files": [
"index.js",
"index.js.map",
"index.mjs",
"index.mjs.map"
],
"scripts": {
"format": "prettier --write src/**/*.js",
"prepublishOnly": "npm test",
"pretest": "rollup --config .rollup.js --silent",
"test": "npm run test:js && npm run test:tape",
"test:js": "eslint src/{*,**/*}.js --cache --ignore-path .gitignore --quiet",
"test:tape": "postcss-tape"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"lodash": "^4.17.14",
"postcss": "^7.0.16",
"postcss-value-parser": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"husky": "^3.0.0",
"lint-staged": "^9.2.0",
"postcss-tape": "^5.0.0",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2",
"rollup": "^1.13.1",
"rollup-plugin-babel": "^4.3.2"
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 2018,
"impliedStrict": true,
"sourceType": "module"
},
"root": true
},
"keywords": [
"postcss",
"css",
"postcss-plugin",
"postcss-theme-ui",
"theme-ui"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
}
}