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
30 lines (30 loc) · 964 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 964 Bytes
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
{
"name": "@bem-react/classname",
"version": "1.5.6",
"description": "BEM React ClassName",
"homepage": "https://github.com/bem/bem-react/tree/master/packages/classname",
"repository": "https://github.com/bem/bem-react",
"keywords": ["bem", "naming", "classes", "notation", "core"],
"main": "index.js",
"typings": "classname.d.ts",
"publishConfig": {
"access": "public"
},
"files": ["build", "classname.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.ts"
},
"nyc": {
"include": ["classname.tsx"],
"extension": [".ts", ".tsx"],
"reporter": ["text", "html"],
"sourceMap": true,
"instrument": true,
"all": true
}
}