-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
39 lines (39 loc) · 1.13 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
{
"name": "@bem-react/core",
"version": "5.1.0",
"description": "BEM React Core",
"homepage": "https://github.com/bem/bem-react/tree/master/packages/core",
"repository": "https://github.com/bem/bem-react",
"keywords": ["bem", "modifier", "withBemMod", "core"],
"main": "index.cjs",
"typings": "core.d.ts",
"exports": {
"development": {
"require": "./build/core.development.cjs",
"module": "./build/core.development.mjs"
},
"production": {
"require": "./build/core.production.min.cjs",
"module": "./build/core.production.min.mjs"
},
"require": "./index.cjs",
"default": "./build/core.production.min.mjs"
},
"publishConfig": {
"access": "public"
},
"files": ["build", "core.d.ts"],
"license": "MPL-2.0",
"scripts": {
"prepublishOnly": "npm run build",
"build": "node ../../scripts/rollup/build.js",
"unit": "../../node_modules/.bin/jest --config ../../.config/jest/jest.config.js"
},
"dependencies": {
"@bem-react/classname": "1.6.0",
"@bem-react/classnames": "1.3.10"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
}