-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
107 lines (107 loc) · 3.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
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
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "react-lite-ui",
"version": "1.0.2",
"description": "A set of React UI components",
"main": "dist/index.js",
"scripts": {
"docs:dev": "cd doc && npm run develop",
"prebuild": "rm -rf dist components && npm run lint:fix",
"build": "cross-env NODE_ENV=production webpack -p --config webpack.prod.js",
"lint": "eslint ./ --ext .jsx --ext .js && echo \"eslint: no lint errors!\"",
"lint:fix": "eslint ./ --ext .jsx --ext .js --fix && echo \"eslint: all errors fixed!\"",
"test": "nyc mocha --require @babel/register --require jsdom-global/register --require test/testSetup.js --require test/ignoreStyles.js 'lib/**/*.test.js'",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"semantic-release": "semantic-release"
},
"nyc": {
"check-coverage": true,
"per-file": true,
"statements": 75,
"branches": 65,
"functions": 65,
"lines": 75,
"include": [
"lib/**/*.js"
],
"exclude": [
"lib/slider/*.js",
"lib/globals/*.js",
"lib/**/*.test.js"
]
},
"repository": "https://github.com/Codebrahma/react-lite-ui",
"bugs": {
"url": "https://github.com/Codebrahma/react-lite-ui/issues"
},
"license": "MIT",
"private": false,
"keywords": [
"react",
"components",
"light",
"weight",
"lightweight",
"theme",
"ui",
"kit",
"component-library",
"ui-kit",
"ui-components",
"reusable"
],
"author": "Codebrahma",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"chai": "^4.2.0",
"chai-enzyme": "^1.0.0-beta.1",
"cross-env": "^5.2.0",
"css-loader": "^0.28.11",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"eslint": "^5.11.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"file-loader": "^3.0.1",
"glob": "^7.1.3",
"jsdom": "13.1.0",
"jsdom-global": "3.0.2",
"mini-css-extract-plugin": "^0.5.0",
"mocha": "^5.2.0",
"node-sass": "^4.8.3",
"nyc": "^13.0.1",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"sass-loader": "^7.0.1",
"sinon": "^7.2.2",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^2.1.0",
"webpack": "^4.28.2",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.13",
"webpack-merge": "^4.1.2",
"webpack-visualizer-plugin": "^0.1.11",
"semantic-release": "^15.13.1"
},
"dependencies": {
"classnames": "^2.2.6",
"prop-types": "^15.6.2",
"react": "^16.3.2",
"react-css-themr": "^2.1.2",
"react-dom": "^16.3.2",
"react-icons": "^3.2.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}