-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.28 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
{
"name": "@naologic/forms",
"version": "3.2.4",
"description": "A collection of Nao public libraries",
"author": "Gabriel",
"url": "https://naologic.com",
"copyright": "Copyright 2024 NaoLogic",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"prod": "ng build --configuration=production",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"copy:forms": "rm -rf dist/naologic/forms && cp README.md projects/naologic/forms/ && cp LICENSE.md projects/naologic/forms/ ",
"build:forms": "npm run copy:forms && ng build @naologic/forms --configuration=production && cd dist/naologic/forms/ && npm pack",
"publish:forms": "npm run build:forms && cd dist/naologic/forms/ && npm publish --scope=@naologic --access public",
"copy:pipes": "rm -rf dist/naologic/pipes && cp README.md projects/naologic/pipes/ && cp LICENSE.md projects/naologic/pipes/ ",
"build:pipes": "npm run copy:pipes && ng build @naologic/pipes --configuration=production && cd dist/naologic/pipes/ && npm pack ",
"publish:pipes": "npm run build:pipes && cd dist/naologic/pipes/ && npm publish --scope=@naologic --access public",
"publish": "npm run publish:forms && npm run publish:pipes"
},
"repository": {
"type": "git",
"url": "https://github.com/naologic/ngx-super-forms.git"
},
"public": true,
"dependencies": {
"@angular/animations": "~12.0.5",
"@angular/common": "~12.0.5",
"@angular/compiler": "~12.0.5",
"@angular/core": "~12.0.5",
"@angular/forms": "~12.0.5",
"@angular/platform-browser": "~12.0.5",
"@angular/platform-browser-dynamic": "~12.0.5",
"@angular/router": "~12.0.5",
"lodash": "^4.17.21",
"rxjs": "~6.6.0",
"tslib": "^2.1.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.0.5",
"@angular/cli": "~12.0.5",
"@angular/compiler-cli": "~12.0.5",
"@types/jasmine": "~3.6.0",
"@types/lodash": "^4.14.170",
"@types/node": "^12.11.1",
"jasmine-core": "~3.7.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^12.0.0",
"typescript": "~4.2.3"
},
"snyk": true
}