-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.88 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
{
"name": "@hmblb/hmblb-utils",
"version": "0.0.0-semantically-released",
"description": "Removes the gaps of your existing float based grid.",
"main": "dist/bundle.js",
"scripts": {
"lint": "eslint src",
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "webpack",
"commit": "git-cz",
"test": "jest --verbose",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"keywords": [
"utility",
"helpers",
"library",
"immutable",
"funcitonal",
"fp"
],
"files": [
"dist"
],
"jest": {
"modulePaths": [
"src"
],
"collectCoverageFrom": [
"public/assets/scripts/**/*.{js,jsx}",
"!<rootDir>/node_modules/",
"!<rootDir>/test"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"author": "John Persson",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-2": "^6.24.1",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"flow-bin": "^0.50.0",
"husky": "^0.14.3",
"jest": "^20.0.4",
"jsdom": "^11.1.0",
"npm-run-all": "^4.0.2",
"rimraf": "^2.6.1",
"semantic-release": "^6.3.6",
"webpack": "^3.3.0"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/johnnyBira/hmblb-utils.git"
}
}