-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.79 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
{
"name": "v_is_empty_value",
"version": "2.1.10",
"description": "Simple checker functions for empty values. Can check if a value is empty or not. [ isEmpty(val) / isNotEmpty(val) ]",
"main": "./dist/cjs.js",
"module": "./dist/es.js",
"jsnext:main": "./dist/cjs.js",
"unpkg": "./dist/umd.js",
"amd": "./dist/amd.js",
"browser": "./dist/umd.js",
"system": "./dist/system.js",
"iife": "./dist/iife.js",
"scripts": {
"export:types": "sh -c \"npx -p typescript tsc ./src/*.js --declaration --allowJs --emitDeclarationOnly --outDir types\"",
"test": "jest --runInBand",
"test:watch": "jest --runInBand --watch",
"build": "rollup -c ./rollup.config.js --bundleConfigAsCjs",
"build:prod": "rollup -c ./rollup.config.js --bundleConfigAsCjs --environment NODE_ENV:production",
"prepack": "npm run lint:fix && npm run export:types && npm run build:prod && npm run test",
"lint:fix": "eslint src --fix",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/V-core9/v_is_empty_value.git"
},
"keywords": [
"is_not_empty_value",
"is_empty_value",
"empty",
"checkEmpty",
"testEmptyValue",
"isEmpty",
"isNotEmpty",
"v-core9"
],
"author": "v-core9",
"license": "MIT",
"bugs": {
"url": "https://github.com/V-core9/v_is_empty_value/issues"
},
"homepage": "https://github.com/V-core9/v_is_empty_value#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-strip": "^3.0.4",
"@rollup/plugin-terser": "^0.4.4",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"jest": "^29.5.0",
"rollup": "^4.9.0",
"typescript": "^5.3.3"
},
"types": "./types/index.d.ts",
"typings": "./types/index.d.ts"
}