-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.12 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
{
"name": "pre-style",
"version": "1.1.0",
"description": "Pre-Style is a tool that lets you author CSS-in-JS (or CSS-in-Markup) while outputting highly efficient CSS.",
"main": "src/module/prestyle.js",
"bin": {
"prestyle": "./bin/prestyle"
},
"scripts": {
"lint": "eslint **/*.js bin/prestyle",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/soluml/pre-style/"
},
"bugs": {
"url": "https://github.com/soluml/pre-style/issues"
},
"homepage": "http://pre.style",
"author": {
"name": "Benjamin Solum",
"email": "[email protected]",
"url": "http://soluml.com"
},
"engines": {
"node": ">=12.0.0"
},
"license": "MIT",
"dependencies": {
"chalk": "2.4.2",
"commander": "2.20.0",
"css-mqpacker": "7.0.0",
"csso": "^4.2.0",
"gonzales": "1.0.7",
"lodash": "4.17.21",
"mkdirp": "0.5.1",
"sass": "1.22.9",
"sweatmap": "0.3.4"
},
"devDependencies": {
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"expect": "^26.6.2",
"mocha": "^8.4.0"
}
}