-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathpackage.json
32 lines (32 loc) · 1 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
{
"name": "@bem-react/classnames",
"version": "1.3.10",
"description": "BEM React ClassNames merge",
"homepage": "https://github.com/bem/bem-react/tree/master/packages/classnames",
"repository": "https://github.com/bem/bem-react",
"keywords": ["classes", "merge"],
"main": "index.cjs",
"typings": "classnames.d.ts",
"exports": {
"development": {
"require": "./build/classnames.development.cjs",
"module": "./build/classnames.development.mjs"
},
"production": {
"require": "./build/classnames.production.min.cjs",
"module": "./build/classnames.production.min.mjs"
},
"require": "./index.cjs",
"default": "./build/classnames.production.min.mjs"
},
"publishConfig": {
"access": "public"
},
"files": ["build", "classnames.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"
}
}