-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.16 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
{
"name": "babel-plugin-styled-components-dataset",
"version": "0.1.5",
"description": "Add custom dataset to styled-components for better debuging and testing",
"repository": {
"type": "git",
"url": "https://github.com/ssneilss/babel-plugin-styled-components-dataset.git"
},
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"test": "jest ./test/index.test.js",
"clean": "rm -rf lib",
"build": "babel src -d lib",
"prepublish": "npm run clean && npm run build"
},
"author": "Neil Zheng <pppp29654213@gmail.com>",
"license": "MIT",
"keywords": [
"styled-components",
"dataset",
"e2e testing",
"custom attributes",
"debug",
"id"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-preset-env": "^1.7.0",
"eslint": "^4.9.0",
"eslint-config-airbnb": "16.1.0",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"jest": "^22.4.3",
"rollup": "^0.58.2"
},
"dependencies": {
"babel-types": "^6.26.0"
}
}