-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.58 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
{
"name": "prejss-cli",
"version": "0.3.3",
"description": "Get ES6 modules or JSON files from CSS/SCSS/LESS/other styles using PreJSS",
"main": "lib/index.js",
"bin": {
"prejss-cli": "lib/cli.js"
},
"scripts": {
"clean": "rimraf lib",
"build:lib": "babel src --out-dir lib",
"build:examples-js": "./lib/cli.js ./examples/src --pretty --out-dir ./examples/dist --config plugins=postcss-import,postcss-simple-vars,postcss-sassy-mixins",
"build:examples-json": "./lib/cli.js ./examples/src -f json --pretty --out-dir ./examples/dist --config plugins=postcss-import,postcss-simple-vars,postcss-sassy-mixins",
"build:examples": "npm run build:examples-js && npm run build:examples-json",
"lint": "eslint src",
"flow": "flow check src",
"check": "npm run flow",
"test": "npm run test:clean && jest",
"test:clean": "rm -rf ./tests/.tmp",
"build": "npm run build:lib && chmod u+x lib/cli.js && npm run build:examples",
"example": "./lib/cli.js -f json examples --pretty --out-dir ./dist --config plugins=postcss-import,postcss-simple-vars,postcss-sassy-mixins",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axept/prejss-cli.git"
},
"keywords": [
"css",
"css-in-js",
"prejss",
"postcss",
"postjss",
"rework",
"jss",
"styled-components",
"stylesheets",
"scss",
"sass",
"less",
"stylus",
"sugarss"
],
"author": "Axept <office@axept.co>",
"license": "MIT",
"bugs": {
"url": "https://github.com/axept/prejss/issues"
},
"homepage": "https://github.com/axept/prejss",
"dependencies": {
"commander": "^2.9.0",
"fs-readdir-recursive": "^1.0.0",
"glob": "^7.1.1",
"lodash.uniq": "^4.5.0",
"output-file-sync": "^1.1.2",
"prejss-postcss-parser": "^0.3.1"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"eslint": "^3.16.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"flow": "^0.2.3",
"flow-bin": "^0.39.0",
"fs-promise": "^2.0.0",
"jest": "^19.0.2",
"postcss-extend": "^1.0.5",
"postcss-import": "^9.1.0",
"postcss-sassy-mixins": "^2.0.0",
"postcss-simple-vars": "^3.0.0",
"rimraf": "^2.6.0"
}
}