-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.04 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.04 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "react-simple-bem",
"version": "1.6.6",
"description": "Library for easier use of BEM methodology in React JS",
"main": "lib/index.js",
"types": "types/index.d.ts",
"typings": "types/index.d.ts",
"scripts": {
"test": "jasmine-ts --project ./tsconfig.spec.json",
"nyc": "nyc",
"test:coverage": "nyc -e .ts -e .tsx npm run test",
"coveralls": "nyc report --reporter=text-lcov | ./node_modules/coveralls/bin/coveralls.js",
"lint": "eslint ./ --ext .ts,.tsx ",
"prepare": "tsc",
"prepublish": "npm test"
},
"nyc": {
"include": "src",
"exclude": "**/*.spec.js"
},
"author": "Rafał 'Bajdzis' Budzis <rafal@budzis.pl>",
"keywords": [
"react-simple-bem",
"react",
"bem",
"simple",
"block",
"element",
"modifier",
"class-name",
"classes",
"component",
"react",
"react-component",
"naming",
"decorator",
"typings",
"typescript",
"types"
],
"license": "MIT",
"optionalDependencies": {},
"peerDependencies": {
"react": "^16.0.0"
},
"devDependencies": {
"@types/enzyme": "^3.10.3",
"@types/jasmine": "^3.4.0",
"@types/jasmine-enzyme": "^7.0.0",
"@types/react": "^16.8.24",
"@typescript-eslint/eslint-plugin": "^2.0.1-alpha.15",
"@typescript-eslint/parser": "^2.0.1-alpha.15",
"coveralls": "^3.0.2",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.8.0",
"eslint": "^6.3.0",
"eslint-plugin-react": "^7.12.4",
"jasmine": "^3.3.1",
"jasmine-enzyme": "^6.1.2",
"jasmine-ts": "^0.3.0",
"jsdom": "^11.12.0",
"nyc": "^14.1.1",
"pre-commit": "^1.2.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"dependencies": {},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Bajdzis/react-simple-bem.git"
},
"bugs": {
"url": "https://github.com/Bajdzis/react-simple-bem/issues"
},
"homepage": "https://github.com/Bajdzis/react-simple-bem#readme"
}