-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.58 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "react-classnaming",
"version": "0.16.4",
"description": "Tools to establish CSS classes as an explicit abstraction layer and to handle it as an interface between React and CSSStyleDeclaration",
"dependencies": {},
"keywords": [
"typescript",
"declarative",
"css-classes",
"react",
"bem",
"css",
"classname",
"css-modules",
"classnames",
"classnaming",
"react-classnaming"
],
"author": "Andrii Kirmas <[email protected]>",
"homepage": "https://github.com/askirmas/react-classnaming#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/askirmas/react-classnaming.git"
},
"bugs": {
"url": "https://github.com/askirmas/react-classnaming/issues#bugs"
},
"license": "MIT",
"scripts": {
"dev": "npm run jest -- --collectCoverageFrom=[] --bail=false --watch",
"test": "npm run jest --",
"pretest": "jest --clearCache",
"build": "npm run compile",
"prebuild": "npm run test",
"postbuild": "npm run spec",
"release": "np",
"-prerelease": "./prerelease.sh",
"-postrelease": "./postrelease.sh",
"compile": "tsc --project tsconfig.compile.json",
"precompile": "rm -rf dist types",
"postcompile": "./postcompile.sh",
"spec": "cd __recipes__ && npm run test --",
"produce:typing": "ts-node-script __typing__/produce",
"setup": "git config include.path ../.gitconfig && git-hooks-wrapper init",
"jest": "jest --runInBand",
"tsc": "tsc"
},
"private": false,
"main": "./dist/index.js",
"types": "./dist/",
"exports": {
".": "./dist/index.js",
"./": "./dist/",
"./bem": "./dist/bem.js",
"./naming": "./dist/naming.js",
"./map": "./dist/map.js",
"./check": "./dist/check.js"
},
"publishConfig": {
"access": "public"
},
"np": {
"yarn": false,
"branch": "main",
"2fa": false
},
"files": [
"dist"
],
"peerDependencies": {
"typescript": ">=4.2",
"@types/react": "*"
},
"devDependencies": {
"@types/classnames": "^2.2.11",
"@types/node": "^14.14.33",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.1",
"@types/reactstrap": "^8.7.2",
"bootstrap3": "npm:bootstrap@^3.4.1",
"bootstrap4": "npm:bootstrap@^4.6.0",
"classnames": "^2.2.6",
"git-hooks-wrapper": "^0.7.1",
"jest": "^26.6.3",
"material10": "npm:material-components-web@^10.0.0",
"np": "^7.3.0",
"postcss": "^8.2.8",
"postcss-d-ts": "^1.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"ts-jest": "^26.5.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}