-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
97 lines (97 loc) · 2.77 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
{
"name": "react-components-kit",
"version": "0.0.0-development",
"description": "Collection of reusable React components",
"main": "dist/index.js",
"directories": {
"example": "examples"
},
"scripts": {
"_comment": "TODO: enable tests and code coverage...",
"commit": "git-cz",
"check-coverage": "nyc check-coverage --statements 0 --branches 0 --functions 0 --lines 0",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"watch:test": "npm t -- -w",
"test": "mocha src/index.test.js --compilers js:babel-register",
"cover": "nyc npm t",
"watch:build:lib": "babel -w ./src -d dist --ignore *.test.js",
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:lib": "babel ./src -d dist --ignore *.test.js",
"build:umd": "webpack src/index.js umd/react-components-kit.js",
"build:umd.min": "webpack -p src/index.js umd/react-components-kit.min.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"clean:install": "rimraf node_modules && npm install"
},
"repository": {
"type": "git",
"url": "https://github.com/TaitoUnited/react-components-kit.git"
},
"keywords": [
"react",
"component",
"kit",
"collection"
],
"files": [
"*.md",
"umd",
"dist"
],
"author": "Taito United Oy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TaitoUnited/react-components-kit/issues"
},
"homepage": "https://github.com/TaitoUnited/react-components-kit#readme",
"babel": {
"presets": [
"es2015",
"react",
"stage-2"
]
},
"peerDependencies": {
"react": ">=15"
},
"dependencies": {
"color": "2.0.0",
"prop-types": "^15.6.0",
"react-transition-group": "2.2.0",
"styled-components": "^2.1.2"
},
"_comment": "NOTE that semantic-release v8 requires node >= 8!!!",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "7.1.0",
"babel-loader": "7.1.2",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"chai": "3.5.0",
"codecov.io": "0.1.6",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.0.0",
"eslint": "3.9.1",
"eslint-config-airbnb": "13.0.0",
"eslint-plugin-babel": "4.1.2",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.6.0",
"husky": "0.14.3",
"istanbul": "0.4.5",
"mocha": "3.1.2",
"npm-run-all": "4.1.1",
"nyc": "11.2.1",
"react": "16.0.0",
"react-dom": "16.0.0",
"rimraf": "2.6.1",
"semantic-release": "^8.2.0",
"webpack": "3.6.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}