generated from codevor/js-library-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.71 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
{
"name": "@codevor/js-is-empty",
"version": "0.2.1",
"description": "📭Basic empty checker",
"main": "dist/js-is-empty.js",
"unpkg": "dist/js-is-empty.min.js",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"dev": "NODE_ENV=dev webpack --progress --colors --watch",
"build:umd": "NODE_ENV=production webpack",
"lint": "eslint src tests",
"test": "jest --coverage --expand",
"test:watch": "jest --watch",
"coveralls": "cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"prepublish": "yarn clean && yarn build:umd",
"commit": "git-cz"
},
"keywords": [
"Utils",
"Empty Checker"
],
"author": "Ilê Caian <[email protected]> (https://ile.pink/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/codevor/js-is-empty.git"
},
"bugs": {
"url": "https://github.com/codevor/js-is-empty/issues"
},
"homepage": "https://github.com/codevor/js-is-empty#readme",
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"commitizen": "^4.0.3",
"coveralls": "^3.0.7",
"cz-conventional-changelog": "3.0.2",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"husky": "^3.0.9",
"jest": "^24.9.0",
"rimraf": "^3.0.0",
"terser-webpack-plugin": "^2.2.3",
"webpack": "^4.41.1",
"webpack-cli": "^3.3.9"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@codevor/js-is-type": "^0.1.1"
}
}