-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.51 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.51 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "@zlab-de/zel-react",
"version": "2.0.3",
"private": false,
"author": "Alyssa Butler for Zeppelin GmbH",
"repository": {
"type": "git",
"url": "https://github.com/zepdev/zeppelin-element-library-react"
},
"description": "React Components for Zeppelin Element Library",
"keywords": [
"react",
"react-component",
"zeppelin",
"ZLab"
],
"license": "MIT",
"scripts": {
"build": "yarn build:cjs && yarn build:esm && yarn build:es && yarn build:umd && yarn copy",
"build:cjs": "cross-env NODE_ENV=production BABEL_ENV=cjs babel --config-file ../../babel.config.js ./src --out-dir ./build --ignore \"**/*.test.js\"",
"build:esm": "cross-env NODE_ENV=production BABEL_ENV=esm babel --config-file ../../babel.config.js ./src --out-dir ./build/esm --ignore \"**/*.test.js\"",
"build:es": "cross-env NODE_ENV=production BABEL_ENV=es babel --config-file ../../babel.config.js ./src --out-dir ./build/es --ignore \"**/*.test.js\"",
"build:umd": "cross-env BABEL_ENV=production-umd rollup -c scripts/rollup.config.js",
"copy": "node scripts/copy-files.js"
},
"peerDependencies": {
"@types/react": "^16.9.56",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"clsx": "^1.1.1",
"downshift": "^6.0.6"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=8.0.0"
}
}