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
/
package.json
66 lines (66 loc) · 2.02 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
66
{
"name": "examples-generator",
"displayName": "Examples Generator",
"description": "A custom generator tool to produce icons examples for vscode-icons",
"version": "0.7.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": "lib/examples.js"
},
"files": [
"lib"
],
"scripts": {
"reinstall": "rimraf ./package-lock.json ./node_modules && npm i",
"cleanup": "rimraf ./lib",
"precompile:dev": "npm run lint",
"compile:dev": "npm run compile -- -p tsconfig.dev.json",
"precompile": "npm run cleanup",
"compile": "tsc",
"compile:w": "npm run compile -- -w",
"lint": "eslint . --ext .ts",
"prebundle": "npm run cleanup",
"bundle": "rollup -c",
"preexample": "npm run lint && npm run compile",
"example": "node ./bin/example"
},
"dependencies": {
"yargs": "~15.4.1"
},
"devDependencies": {
"@types/node": "10",
"@types/yargs": "~15.0.5",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"@rollup/plugin-typescript": "5.0.2",
"builtin-modules": "^3.1.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.23.0",
"rollup-plugin-preserve-shebangs": "^0.2.0",
"rollup-plugin-terser": "^6.1.0",
"typescript": "^3.9.7"
}
}