-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
42 lines (42 loc) · 1.11 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
{
"name": "react-bem-classes",
"version": "1.1.0",
"description": "Decorator for reactjs components",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --config jest.config.json",
"lint": "tslint -c tslint.json -p tsconfig.json",
"ci-local": "npm test && npm run lint && npm run build -- --noEmit",
"ci": "npm run test -- --coverage && npm run lint && npm run build -- --noEmit"
},
"engines": {
"node": ">=8.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ilyaagarkov/react-bem-classes.git"
},
"keywords": [
"react",
"bem",
"className",
"decorator"
],
"author": "Ilya Agarkov",
"license": "MIT",
"bugs": {
"url": "https://github.com/ilyaagarkov/react-bem-classes/issues"
},
"homepage": "https://github.com/ilyaagarkov/react-bem-classes#readme",
"devDependencies": {
"@types/jest": "^24.0.9",
"jest": "^24.1.0",
"jest-junit-reporter": "^1.1.0",
"ts-jest": "^24.0.0",
"tslint": "^5.13.1",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.3.3333"
}
}