-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.33 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-simple-theme",
"version": "0.0.0-development",
"description": "A pair of HOC's to make theming in react simple.",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"commit": "git-cz",
"build": "nwb build-react-component",
"clean": "nwb clean-module && npm clean-demo",
"start": "nwb serve-react-demo",
"lint": "eslint .",
"test": "npm run lint && jest --coverage && codecov",
"test:verbose": "jest --verbose",
"test:watch": "jest --watch",
"lint:fix": "eslint . --fix",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"dependencies": {},
"peerDependencies": {
"react": "",
"prop-types": ""
},
"devDependencies": {
"babel-eslint": "^7.2.0",
"babel-jest": "^20.0.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"codecov": "^2.1.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"enzyme": "^2.7.1",
"eslint": "^4.1.0",
"eslint-config-airbnb": "^15.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.0.0",
"jest": "^20.0.0",
"nwb": "~0.17.2",
"prop-types": "^15.5.10",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"regenerator-runtime": "^0.11.0",
"semantic-release": "^6.3.2"
},
"author": "Divyagnan Kandala <[email protected]> (https://github.com/divyagnan)",
"homepage": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/divyagnan/react-simple-theme.git"
},
"keywords": [
"react-component",
"theme"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"coveragePathIgnorePatterns": [
"<rootDir>/__fixtures__/",
"<rootDir>/node_modules/",
"<rootDir>/es/",
"<rootDir>/lib/",
"<rootDir>/coverage/",
"<rootDir>/demo/"
],
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 50,
"lines": 50,
"statements": 50
}
}
},
"babel": {
"presets": [
"es2015",
"react",
"stage-2"
]
}
}