-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
35 lines (35 loc) · 1.05 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
{
"name": "@bem-react/di",
"version": "5.0.0",
"description": "BEM React Dependency Injection",
"homepage": "https://github.com/bem/bem-react/tree/master/packages/di",
"repository": "https://github.com/bem/bem-react",
"keywords": ["bem", "level", "dependency", "di", "dependency injection", "react"],
"main": "index.cjs",
"typings": "di.d.ts",
"exports": {
"development": {
"require": "./build/di.development.cjs",
"module": "./build/di.development.mjs"
},
"production": {
"require": "./build/di.production.min.cjs",
"module": "./build/di.production.min.mjs"
},
"require": "./index.cjs",
"default": "./build/di.production.min.mjs"
},
"publishConfig": {
"access": "public"
},
"files": ["build", "di.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"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
}