This repository has been archived by the owner on Feb 13, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.97 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
58
59
60
61
62
63
64
65
{
"name": "examples-generator",
"displayName": "Examples Generator",
"description": "A custom generator tool to produce icons examples for vscode-icons",
"version": "0.5.0",
"publisher": "vscode-icons-team",
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "Jimi (Dimitris) Charalampidis"
},
"repository": {
"type": "git",
"url": "https://github.com/vscode-icons/wpilgenerator"
},
"bugs": {
"url": "https://github.com/vscode-icons/wpilgenerator/issues"
},
"engines": {
"node": ">=10.*"
},
"main": "./lib/examples.js",
"bin": {
"example": "./bin/example"
},
"files": [
"lib"
],
"scripts": {
"reinstall": "rimraf ./package-lock.json ./node_modules && npm i",
"clean": "rimraf ./lib",
"precompile:dev": "npm run lint",
"compile:dev": "npm run compile -- -p tsconfig.dev.json",
"precompile": "npm run clean",
"compile": "tsc",
"compile:w": "npm run compile -- -w",
"lint": "eslint . --ext .ts",
"prebundle": "npm run clean",
"bundle": "npx rollup -c",
"preexample": "npm run lint && npm run compile",
"example": "node ./bin/example"
},
"dependencies": {
"yargs": "~15.3.1"
},
"devDependencies": {
"@types/node": "10",
"@types/yargs": "~15.0.4",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"@rollup/plugin-typescript": "3.1.1",
"builtin-modules": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.5",
"lint-staged": "^10.1.3",
"prettier": "^2.0.4",
"rimraf": "^3.0.2",
"rollup": "^2.4.0",
"rollup-plugin-terser": "^5.3.0",
"typescript": "^3.8.3"
}
}