-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.13 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.13 KB
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
{
"name": "@igorissen/angular-env-builder",
"version": "2.0.0",
"builders": "builders.json",
"scripts": {
"build": "npm run prebuild && tsc && npm run postbuild",
"postbuild": "cpy --flat src/schema.json dist",
"prebuild": "rimraf dist",
"test": "vitest"
},
"files": [
"dist",
"builders.json"
],
"keywords": [
"angular",
"builder",
"generator",
"environment",
"env"
],
"author": "Ismael Gorissen <ismael.gorissen@gmail.com>",
"license": "MIT",
"description": "Builder to generate \"src/environments/environment.ts\" file based on your environment variables",
"dependencies": {
"@angular-devkit/architect": "~0.1902.10",
"@angular-devkit/core": "~19.2.10"
},
"devDependencies": {
"@eslint/js": "~9.25.1",
"@stylistic/eslint-plugin": "~4.2.0",
"@types/node": "~22.15.3",
"cpy-cli": "~5.0.0",
"eslint": "~9.25.1",
"eslint-plugin-simple-import-sort": "~12.1.1",
"globals": "~16.0.0",
"rimraf": "~6.0.1",
"typescript": "~5.8.3",
"typescript-eslint": "~8.31.1",
"vitest": "~3.1.2"
},
"peerDependencies": {
"dotenv": "~16.4.5"
}
}