forked from bem/bem-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.05 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
{
"name": "@bem-react/core",
"version": "2.0.6",
"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.js",
"typings": "core.d.ts",
"publishConfig": {
"access": "public"
},
"files": ["build", "core.d.ts"],
"license": "MPL-2.0",
"scripts": {
"prepublishOnly": "npm run build",
"build": "node ../../scripts/rollup/build.js",
"lint": "__DEV__=1 tsc -p . --noEmit && tslint -p . -t stylish",
"unit": "../../node_modules/.bin/mocha --opts ../../mocha.opts --",
"test": "../../node_modules/.bin/nyc npm run unit test/*.test.tsx"
},
"dependencies": {
"@bem-react/classname": "1.5.6",
"@bem-react/classnames": "1.3.7"
},
"peerDependencies": {
"react": "^16.8.0"
},
"nyc": {
"include": ["core.tsx"],
"extension": [".ts", ".tsx"],
"reporter": ["text", "html"],
"sourceMap": true,
"instrument": true,
"all": true
}
}