-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 948 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 948 Bytes
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
{
"name": "@quarkly/theme",
"version": "0.1.2",
"description": "Theme module for @quarkly/atomize",
"main": "build/cjs",
"module": "build/esm",
"sideEffects": false,
"scripts": {
"build": "npm run clean && npm run build:cjs && npm run build:esm",
"clean": "rimraf build/*",
"build:cjs": "NODE_ENV=cjs babel src --out-dir build/cjs --ignore '**/*.test.js'",
"build:esm": "NODE_ENV=esm babel src --out-dir build/esm --ignore '**/*.test.js'"
},
"author": "Eddort",
"license": "MIT",
"peerDependencies": {
"styled-components": "^5.0.1",
"react": "^16.13.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/register": "^7.8.3",
"@babel/runtime": "^7.8.4",
"rimraf": "^3.0.2"
},
"publishConfig": {
"access": "public"
}
}