-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.88 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
{
"name": "babel-plugin-transform-prejss",
"version": "0.5.1",
"description": "Get the power of PostCSS and Babel with plugins in your JSS styles. Just put CSS into JS and get it as JSS object.",
"main": "lib/index.js",
"scripts": {
"build:lib": "babel src --out-dir lib",
"lint": "./node_modules/.bin/eslint src/",
"flow": "flow check src/",
"clean": "rimraf lib dist",
"check": "npm run flow",
"test": "exit 0",
"build": "npm run build:lib",
"example": "cd examples/basic && npm run build",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axept/babel-plugin-transform-prejss.git"
},
"keywords": [
"css",
"css-in-js",
"prejss",
"postcss",
"postjss",
"rework",
"jss",
"styled-components",
"stylesheets",
"jss-from-css",
"jss-from-postcss",
"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": {
"babel-types": "^6.23.0",
"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-async-to-generator": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-polyfill": "^6.23.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",
"jest": "^19.0.2",
"rimraf": "^2.6.0"
}
}