-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.04 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
{
"name": "bem-cn-lite",
"version": "4.1.0",
"description": "Lite version of the friendly BEM-style class name generator, which is great for React",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"clean": "rm -rf build",
"prepublish": "npm run build",
"test": "tsc && mocha tests/*-spec.js"
},
"author": {
"name": "Vladimir Kuznetsov",
"email": "[email protected]",
"url": "https://github.com/mistakster"
},
"contributors": [
{
"name": "Stanislav Eremenko",
"url": "https://github.com/c01nd01r"
},
{
"name": "Roman Fedorenkov",
"url": "https://github.com/SeqviriouM"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mistakster/bem-cn-lite.git"
},
"keywords": [
"BEM",
"React",
"class",
"classname",
"block",
"element",
"modifier"
],
"dependencies": {
"bem-cn": "^3.0.1"
},
"devDependencies": {
"mocha": "^9.2.0",
"should": "^13.2.3",
"typescript": "^4.5.5"
}
}