-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.62 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "bem-composer",
"version": "1.2.0",
"description": "BEM classnames generator for react, styled components, linaria",
"main": "dist/lib/bem.js",
"module": "dist/esm/bem.js",
"types": "dist/esm/bem.d.ts",
"sideEffects": false,
"repository": {
"type": "github",
"url": "https://github.com/magicismight/bem-composer"
},
"files": [
"dist"
],
"author": {
"name": "Horcrux Chen"
},
"scripts": {
"test": "jest --coverage",
"build": "run-s test clean && run-p build:cjs build:esm",
"build:cjs": "tsc --module commonjs --declaration --outDir ./dist/lib",
"build:esm": "tsc --module esnext --declaration --outDir ./dist/esm",
"prepublishOnly": "npm run build",
"clean": "rm -rf dist"
},
"keywords": [
"BEM",
"classname",
"react",
"styled",
"linaria",
"block",
"element",
"modifier"
],
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"eslint-config-alloy": "^4.2.0",
"husky": "4.3.8",
"istanbul-badges-readme": "^1.4.0",
"jest": "^27.0.6",
"lint-staged": "9.4.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5"
},
"lint-staged": {
"*.{ts}": [
"eslint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test && istanbul-badges-readme --coverageDir=\".coverage/\" && git add 'README.md'"
}
},
"dependencies": {
"tslib": "^2.3.1"
}
}