This repository has been archived by the owner on Feb 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
109 lines (109 loc) · 3.23 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
108
109
{
"name": "bloomer",
"version": "0.6.4",
"description": "A set of React Components for Bulma CSS",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"jsnext:main": "esm/index.js",
"module": "esm/index.js",
"browser": "bundles/bloomer.min.js",
"dependencies": {
"classnames": "^2.2.6",
"create-react-class": "15.6.3",
"prop-types": "^15.6.2",
"tslib": "^1.9.3"
},
"peerDependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"@types/classnames": "^2.2.6",
"@types/enzyme": "^3.1.14",
"@types/jest": "^22.2.3",
"@types/node": "^9.6.35",
"@types/react": "^16.4.18",
"@types/react-dom": "^16.0.9",
"@types/react-router-dom": "^4.3.1",
"awesome-typescript-loader": "^3.5.0",
"bulma": "^0.6.2",
"clean-webpack-plugin": "^0.1.19",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"css-loader": "^0.28.11",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^2.30.1",
"inline-manifest-webpack-plugin": "^3.0.1",
"jest": "^22.4.4",
"jest-cli": "^22.4.4",
"parallelshell": "^3.0.2",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-highlight": "^0.10.0",
"react-router-dom": "^4.3.1",
"react-test-renderer": "^16.6.0",
"script-ext-html-webpack-plugin": "^1.8.8",
"shx": "^0.2.2",
"style-loader": "^0.20.3",
"typescript": "^2.9.2",
"watch": "^1.0.2",
"webpack": "^3.12.0",
"webpack-dev-server": "^2.11.3"
},
"scripts": {
"clean": "shx rm -rf lib esm bundles",
"test": "jest",
"test:ci": "jest --runInBand --coverage && cat ./reports/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"coverage": "jest --coverage",
"docs": "cross-env NODE_ENV=development webpack-dev-server --config webpack.docs.js --env.dev",
"deploy": "cross-env NODE_ENV=production webpack --config webpack.docs.js --env.prod",
"build": "npm run clean && tsc && tsc -m es6 --outDir esm --removeComments false && cross-env NODE_ENV=production webpack",
"watch:lib": "watch \"npm run deploy\" src/ --wait=2000 --ignoreUnreadable",
"watch:docs": "watch \"npm run docs\" docs/ --wait=2000 --ignoreUnreadable",
"watch:all": "parallelshell \"npm run watch:lib\" \"npm run watch:docs\"",
"prepublish": "npm run build"
},
"jest": {
"setupFiles": [
"./jest.config.ts"
],
"transform": {
"^.+\\.tsx?$": "<rootDir>/preprocessor.js"
},
"testRegex": "(/test/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"coverageDirectory": "reports",
"collectCoverageFrom": [
"**/src/**/*.{ts,tsx}",
"!**/src/**/index.ts",
"!**/docs/**"
],
"testURL": "http://localhost"
},
"keywords": [
"bulma",
"react"
],
"repository": {
"type": "git",
"url": "https://github.com/AlgusDark/bloomer.git"
},
"bugs": {
"url": "https://github.com/AlgusDark/bloomer/issues"
},
"author": {
"email": "[email protected]",
"name": "Algus Dark",
"url": "http://bloomer.js.org"
},
"license": "MIT",
"homepage": "http://bloomer.js.org"
}