-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.13 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
{
"name": "split-cmd",
"version": "1.1.0",
"description": "💦Split a command into an array or an object",
"license": "MIT",
"homepage": "https://github.com/thiagodp/split-cmd#readme",
"bugs": {
"url": "https://github.com/thiagodp/split-cmd/issues"
},
"files": [
"index.*"
],
"source": "index.ts",
"main": "index.js",
"browser": "index.umd.js",
"unpkg": "index.umd.js",
"module": "index.esm.js",
"types": "index.d.ts",
"scripts": {
"test": "jest",
"build": "microbundle --no-sourcemap",
"all": "pnpm run test && pnpm run build",
"preversion": "jest && pnpm run build",
"postversion": "echo \"Don't forget to push the tags and publish the version.\""
},
"dependencies": {},
"devDependencies": {
"jest": "^29.7.0",
"microbundle": "^0.15.1"
},
"keywords": [
"split",
"command",
"argument",
"args",
"cli",
"spawn",
"exec",
"process",
"child_process"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thiagodp/split-cmd.git"
},
"author": {
"name": "Thiago Delgado Pinto",
"email": "[email protected]"
}
}