forked from mariohmol/ang-jsoneditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.85 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "ang-jsoneditor",
"version": "3.1.1",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/mariohmol/ang-jsoneditor"
},
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve dev",
"build": "ng build",
"build:app": "npm run build:libcopy && ng build --project packages && rimraf src/ang-jsoneditor",
"build:lib": "rimraf ang-jsoneditor/dist && ng-packagr -p ang-jsoneditor/ng-package.json",
"build:libcopy": "cp -R ang-jsoneditor/dist src/ang-jsoneditor",
"watch": "onchange 'ang-jsoneditor/**/*.ts' -- npm run build:lib && npm run build:libcopy",
"build:full": "npm run build:lib && npm run build:app",
"publishnpm": "cp README.md ang-jsoneditor/README.md && npm run build:lib && cd ang-jsoneditor/dist && npm publish",
"unpublish": "npm deprecate -f '[email protected]' 'this package has been deprecated'",
"test": "npm run test:dev && npm run e2e",
"test:dev": "ng test dev --watch=false",
"test:unit": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"ports": "lsof -i tcp:4201",
"reinstall": "rm package-lock.json && rm -rf node_modules && npm i",
"rebuildsass": "npm rebuild node-sass"
},
"dependencies": {
"@angular/common": "16.1.8",
"@angular/compiler": "16.1.8",
"@angular/core": "16.1.8",
"@angular/forms": "16.1.8",
"@angular/platform-browser": "16.1.8",
"@angular/platform-browser-dynamic": "16.1.8",
"@angular/router": "16.1.8",
"core-js": "^3.6.4",
"jsoneditor": "9.10.2",
"rxjs": "*",
"webpack": "^5.88.2",
"zone.js": "~0.13.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.1.8",
"@angular-devkit/schematics": "^16.1.8",
"@angular-eslint/builder": "16.1.0",
"@angular-eslint/eslint-plugin": "16.1.0",
"@angular-eslint/eslint-plugin-template": "16.1.0",
"@angular-eslint/schematics": "16.1.0",
"@angular-eslint/template-parser": "16.1.0",
"@angular/cli": "^16.1.8",
"@angular/compiler-cli": "16.1.8",
"@angular/language-service": "16.1.8",
"@types/jasmine": "~3.6.0",
"@types/node": "^13.7.1",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"cpr": "^3.0.0",
"eslint": "^8.39.0",
"eslint-plugin-import": "latest",
"eslint-plugin-jsdoc": "latest",
"eslint-plugin-prefer-arrow": "latest",
"jasmine": "4.6.0",
"jasmine-core": "4.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "6.4.2",
"karma-chrome-launcher": "3.2.0",
"karma-cli": "2.0.0",
"karma-coverage-istanbul-reporter": "^2.0.0",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.0.0",
"ng-packagr": "^16.1.0",
"protractor": "^7.0.0",
"rimraf": "^2.7.1",
"ts-node": "~7.0.0",
"tslib": "^2.0.0",
"typescript": "4.9.5",
"webpack-cli": "^4.9.2"
}
}