-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.68 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
{
"name": "bem-react-classname",
"version": "1.3.2",
"main": "index.js",
"license": "MIT",
"description": "BEM class names generator created to use with React",
"scripts": {
"test": "jest",
"github-release": "conventional-github-releaser -p angular",
"compile": "gulp --cwd . --gulpfile ./node_modules/library-utils/gulpfile.js compile"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "9.1.2",
"@commitlint/config-conventional": "9.1.2",
"@semantic-release/changelog": "5.0.0",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "7.0.0",
"@semantic-release/npm": "7.0.3",
"@semantic-release/release-notes-generator": "9.0.1",
"@types/enzyme": "^3.1.18",
"@types/enzyme-adapter-react-16": "^1.0.4",
"@types/jest": "^24.0.6",
"@types/react": "16.8.2",
"babel-core": "^6.26.3",
"conventional-changelog-cli": "^2.1.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.9.1",
"husky": "4.2.5",
"jest": "^24.1.0",
"library-utils": "3.0.2",
"react": "16.8.2",
"react-dom": "^16.8.2",
"semantic-release": "^17.1.1",
"ts-jest": "^24.0.0"
},
"peerDependencies": {
"react": "16.*"
},
"resolutions": {
"set-value": ">=2.0.1"
},
"author": "Good guys from Alfa Laboratory",
"maintainers": [
{
"email": "[email protected]",
"name": "Aleksandr Kitov"
}
],
"jest": {
"preset": "ts-jest",
"testRegex": "src/.*-test\\.(tsx?)$",
"setupFiles": [
"<rootDir>/__tests__/setup.ts"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}