-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "babel-plugin-remove-style",
"version": "0.1.0",
"description": "Removes style props from React components. Useful for ignoring styles during testing and avoiding them in snapshots.",
"main": "dist/index.js",
"dependencies": {},
"devDependencies": {
"ava": "^0.18.2",
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-preset-es2015": "^6.24.0"
},
"scripts": {
"prepublish": "npm run transpile",
"test": "ava",
"transpile": "babel src --out-dir dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hylozoic/babel-plugin-remove-style.git"
},
"bugs": {
"url": "https://github.com/Hylozoic/babel-plugin-remove-style/issues"
},
"homepage": "https://github.com/Hylozoic/babel-plugin-remove-style#readme",
"keywords": [
"babel",
"plugin",
"css",
"modules",
"style",
"jsx",
"react"
],
"babel": {
"presets": [
"es2015"
]
},
"author": "Rich Churcher",
"license": "Apache-2.0"
}