forked from AlgusDark/bloomer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.95 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
{
"name": "bloomer",
"version": "0.6.3",
"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.5",
"tslib": "^1.7.0"
},
"devDependencies": {
"@types/classnames": "^2.2.0",
"@types/enzyme": "^2.8.4",
"@types/jest": "^20.0.5",
"@types/node": "^8.0.17",
"@types/react": "^15.0.39",
"@types/react-dom": "^15.5.1",
"@types/react-router-dom": "^4.0.7",
"awesome-typescript-loader": "^3.2.1",
"bulma": "^0.4.1",
"clean-webpack-plugin": "^0.1.16",
"coveralls": "^2.13.1",
"cross-env": "^5.0.1",
"css-loader": "^0.28.1",
"enzyme": "^2.8.2",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.28.0",
"inline-manifest-webpack-plugin": "^3.0.1",
"jest": "^20.0.3",
"parallelshell": "^3.0.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-highlight": "^0.10.0",
"react-router-dom": "^4.1.2",
"react-test-renderer": "^15.5.4",
"script-ext-html-webpack-plugin": "^1.8.5",
"shx": "^0.2.2",
"style-loader": "^0.18.2",
"typescript": "^2.4.2",
"watch": "^1.0.2",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.6.1"
},
"scripts": {
"clean": "shx rm -rf lib esm bundles",
"test": "jest",
"test:ci": "jest --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": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/preprocessor.js"
},
"testRegex": "(/test/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"mapCoverage": true,
"coverageDirectory": "reports",
"collectCoverageFrom": [
"**/src/**/*.{ts,tsx}",
"!**/src/**/index.ts",
"!**/docs/**"
]
},
"keywords": [
"bulma",
"react"
],
"repository": {
"type": "git",
"url": "https://github.com/AlgusDark/bloomer.git"
},
"bugs": {
"url": "https://github.com/AlgusDark/bloomer/issues"
},
"author": {
"email": "algus.dark@gmail.com",
"name": "Algus Dark",
"url": "http://bloomer.js.org"
},
"license": "MIT",
"homepage": "http://bloomer.js.org"
}