-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.31 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
85
86
87
88
89
{
"name": "styled-components-stylefmt",
"version": "0.1.4",
"description": "Formats styled-components templates with stylefmt",
"main": "lib/index.js",
"dependencies": {
"babel-traverse": "^6.26.0",
"babylon": "^6.18.0",
"chalk": "^2.3.0",
"deasync": "^0.1.11",
"detect-newline": "^2.1.0",
"diff": "^3.4.0",
"escape-string-regexp": "^1.0.5",
"globby": "^7.1.1",
"indent-string": "^3.2.0",
"minimist": "^1.2.0",
"postcss": "^5.2.17",
"stylefmt": "^5.3.2",
"stylelint-processor-styled-components": "^0.1.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^21.2.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"coveralls": "^2.13.1",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"flow-bin": "^0.45.0",
"flow-typed": "^2.1.2",
"fs-extra": "^5.0.0",
"jest": "^21.2.1",
"lint-staged": "^6.0.0",
"pre-commit": "^1.2.2",
"prettier-eslint-cli": "^3.4.2",
"stylelint": "^8.3.1",
"tempy": "^0.2.1"
},
"scripts": {
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"eslint": "eslint src",
"flow": "flow",
"format": "prettier-eslint --write \"src/**/*.js\"",
"lib": "babel src --ignore \"/__tests__/\" --out-dir lib",
"lint-staged": "lint-staged",
"prepublish": "yarn lib",
"test": "jest --config .jestrc.json",
"test:stylelint": "stylelint \"./src/__tests__/fixtures/**/*.expected.js\" --config .stylelintrc"
},
"author": {
"name": "Enoah Netzach",
"email": "f.castellarin@gmail.com",
"url": "https://github.com/EnoahNetzach"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brumbrum-it/styled-components-stylefmt.git"
},
"bugs": {
"url": "https://github.com/brumbrum-it/styled-components-stylefmt/issues"
},
"license": "MIT",
"keywords": [
"styled-components",
"stylefmt",
"stylelint",
"css-format"
],
"engines": {
"node": ">= 4"
},
"bin": {
"styled-components-stylefmt": "bin/index.js"
},
"files": [
"bin/index.js",
"lib/index.js",
"lib/bin.js"
],
"lint-staged": {
"*.js": [
"format",
"git add"
]
},
"pre-commit": "lint-staged"
}