-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.45 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.45 KB
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
{
"name": "@risan/is-empty",
"version": "1.0.5",
"description": "Check if a value is empty or not.",
"keywords": [
"is-empty"
],
"homepage": "https://github.com/risan/is-empty#readme",
"bugs": {
"url": "https://github.com/risan/is-empty/issues"
},
"license": "MIT",
"author": {
"name": "Risan Bagja Pradana",
"email": "risanbagja@gmail.com",
"url": "https://bagja.net"
},
"main": "dist/is-empty.cjs.js",
"browser": "dist/is-empty.umd.js",
"repository": {
"type": "git",
"url": "https://github.com/risan/is-empty.git"
},
"scripts": {
"build": "NODE_ENV=build rollup -c",
"lint": "eslint ./",
"lint-fix": "eslint ./ --fix",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"test": "NODE_ENV=test jest"
},
"dependencies": {
"@risan/is-plain-obj": "1.x"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"jest": "^23.6.0",
"prettier": "^1.15.2",
"rollup": "^1.0.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-terser": "^4.0.0"
},
"engines": {
"node": ">=8.0.0"
}
}