-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 911 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 911 Bytes
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
{
"name": "@gah/json-config-plugin",
"version": "0.4.1",
"description": "Adjusts the generated angular.json file",
"main": "./lib/index.js",
"homepage": "https://github.com/gahjs/json-config-plugin",
"repository": "https://github.com/gahjs/json-config-plugin",
"scripts": {
"prebuild": "del-cli lib",
"lint": "eslint src/** --fix",
"build": "yarn run prebuild && tsc -p .",
"drop": "yarn run build && yarn publish --access public --no-git-tag-version "
},
"author": "LoaderB0T",
"license": "MIT",
"private": false,
"dependencies": {
"@gah/shared": "^0.6.0",
"typescript": "^4.1.3"
},
"devDependencies": {
"@awdware/eslint-config-nodejs": "^0.0.6",
"@types/node": "^14.14.20",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"del-cli": "^3.0.1",
"eslint": "^7.17.0",
"ts-node": "^9.1.1"
}
}