-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.63 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
{
"name": "argster",
"version": "1.3.1",
"description": "A simple command/argument manager",
"main": "lib/index.js",
"umd:main": "lib/index.umd.js",
"module": "lib/index.mjs",
"source": "src/index.ts",
"types": "lib/index.d.ts",
"author": "Gudjon Jonsson <[email protected]> (https://gaui.is)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gaui/argster.git"
},
"scripts": {
"build": "microbundle --target node",
"prepublishOnly": "yarn build",
"test": "jest -i",
"test:ci": "jest -i --coverage",
"dts": "tsc --emitDeclarationOnly",
"lint": "eslint --ext .ts src __tests__",
"format": "prettier \"./{src,__tests__}/**/*.{js,jsx,ts,tsx,json,md}\" --write",
"typecheck": "tsc --noEmit --pretty --skipLibCheck",
"vuln": "yarn audit --level high --no-progress --non-interactive --frozen-lockfile"
},
"engines": {
"node": "12.17.0"
},
"dependencies": {
"glob": "^7.1.4",
"ramda": "^0.26.1"
},
"browser": {
"fs": false
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.8.4",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/preset-env": "7.8.4",
"@babel/preset-typescript": "7.8.3",
"@types/glob": "7.1.1",
"@types/jest": "24.0.24",
"@types/node": "12.12.42",
"@types/ramda": "0.26.38",
"@typescript-eslint/eslint-plugin": "3.0.2",
"@typescript-eslint/parser": "3.0.2",
"eslint": "6.8.0",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-prettier": "3.1.3",
"jest": "24.9.0",
"microbundle": "0.12.0",
"prettier": "2.0.5",
"typescript": "3.9.2"
}
}