-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.02 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.02 KB
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
{
"name": "styled-transform-proxy",
"version": "0.3.2",
"author": "Wes Moberly <github.wes@mailhero.io>",
"license": "MIT",
"description": "A wrapper function for extending styled-components via a custom transform function",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/index.js",
"lib/index.d.ts"
],
"repository": "https://github.com/wesm87/styled-transform-proxy.git",
"scripts": {
"build:types": "tsc",
"build:lib": "rm -rf lib/* && babel src --out-dir 'lib' --extensions '.ts' --no-comments",
"build": "yarn build:lib && yarn build:types",
"prepublishOnly": "yarn build",
"postversion": "git push && git push --tags"
},
"dependencies": {
"ramda": "^0.27.0"
},
"devDependencies": {
"@babel/cli": "^7.10.0",
"@babel/core": "^7.10.0",
"@babel/preset-env": "^7.10.0",
"@babel/preset-typescript": "^7.10.1",
"@types/ramda": "^0.27.6",
"babel-plugin-transform-imports": "^2.0.0",
"prettier": "^2.0.5",
"typescript": "^3.9.5"
}
}