-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.35 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
{
"name": "babel-plugin-pure-static-props",
"version": "0.2.0",
"description": "Fixes issue with tree shaking that can occur when using static properties on React components using styled-components",
"main": "lib/index.js",
"files": [
"lib"
],
"repository": "https://github.com/mbrowne/babel-plugin-pure-static-props",
"author": "Matt Browne",
"license": "ISC",
"scripts": {
"clean": "rimraf lib",
"style": "prettier --write src/**/*.js",
"build": "babel src -d lib",
"watch": "yarn build -w",
"prepublishOnly": "npm-run-all test build",
"test": "jest",
"test:watch": "yarn test -- --watch",
"prepublish": "yarn clean && yarn build"
},
"dependencies": {
"@babel/helper-annotate-as-pure": "^7.0.0",
"@babel/plugin-syntax-jsx": "^7.12.13"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-plugin-tester": "^10.0.0",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"rimraf": "^3.0.0"
},
"keywords": [
"react",
"styled-components",
"tree shaking",
"code splitting",
"static properties",
"babel-plugin"
],
"jest": {
"watchPathIgnorePatterns": [
"__fixtures__\\/[^/]+\\/(output|error)\\.js"
]
}
}