-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.7 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.7 KB
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
{
"name": "bem-components-react",
"version": "0.2.1",
"description": "Builder for react components that follow BEM methodology",
"main": "dist/cjs/index.js",
"types": "dist/esm/index.d.ts",
"module": "dist/esm/index.js",
"scripts": {
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build": "rm -rf dist && yarn build:cjs && yarn build:esm",
"test": "mocha -r ts-node/register \"test/**/*.test.{ts,tsx}\"",
"lint": "eslint '{src,test}/**/*.{ts,tsx}'",
"typecheck": "tsc --noEmit",
"prepublishOnly": "yarn build"
},
"keywords": [
"bem",
"components",
"react",
"css",
"styled-components",
"styles"
],
"files": [
"package.json",
"dist",
"src",
"Unlicense",
"README.md"
],
"author": "Dmytro Maretskyi <maretskii@gmail.com>",
"license": "Unlicense",
"repository": {
"type": "git",
"url": "git://github.com/EthWorks/bem-components-react.git"
},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.4",
"@types/sinon-chai": "^3.2.3",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"chai": "^4.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.1.0",
"eslint-plugin-react": "^7.14.3",
"mocha": "^6.2.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"sinon": "^7.4.2",
"sinon-chai": "^3.3.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
},
"dependencies": {
"@types/react": "*"
}
}