-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.11 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.11 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
{
"name": "@glitchedmob/isnullorempty",
"version": "1.3.5",
"description": "a utility for checking is a value is null or empty",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"browser": "dist/umd/index.min.js",
"typings": "dist/types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/glitchedmob/isnullorempty"
},
"scripts": {
"test": "mocha -r ts-node/register -r jsdom-global/register 'src/**/*.spec.ts'",
"build": "rollup -c rollup.config.js",
"start": "rollup -c rollup.config.ts -w"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.17",
"@types/mocha": "^8.2.2",
"@wessberg/rollup-plugin-ts": "^1.3.14",
"chai": "^4.3.4",
"jsdom": "^16.5.3",
"jsdom-global": "^3.0.2",
"mocha": "^8.4.0",
"rollup": "^2.47.0",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^9.1.1",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"keywords": [
"util",
"string",
"is"
]
}