forked from yabab-dev/ng2-codemirror
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.23 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
{
"name": "@ks89/ngx-codemirror",
"version": "6.0.0",
"description": "Angular Codemirror component",
"license": "MIT",
"author": "Stefano Cappa",
"homepage": "https://github.com/Ks89",
"repository": {
"type": "git",
"url": "git+https://github.com/Ks89/ngx-codemirror.git"
},
"engines": {
"node": ">=18.12.1",
"npm": ">=8.19.2"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"serve": "npm run serve:dev",
"serve:dev": "ng serve --configuration development",
"serve:prod": "ng serve --configuration production",
"build": "npm run build:lib && npm run build:main",
"build:lib": "npm run clean:dist && ng build @ks89/ngx-codemirror --configuration production && npm run copy:build && npm run copy:other",
"build:lib:watch": "npm run clean:dist && ng build @ks89/ngx-codemirror --configuration production --watch",
"build:main": "npm run build:main:dev",
"build:main:dev": "ng build --configuration development",
"build:main:prod": "ng build --configuration production",
"copy:build": "cpr dist/ks89/ngx-codemirror @ks89/ngx-codemirror -o",
"copy:other": "cpr README.md @ks89/ngx-codemirror/README.md -o && cpr LICENSE @ks89/ngx-codemirror/LICENSE -o",
"clean": "npm run clean:dist",
"clean:dist": "rimraf @ks89 dist"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.0.0",
"@angular/common": "^15.0.0",
"@angular/compiler": "^15.0.0",
"@angular/core": "^15.0.0",
"@angular/forms": "^15.0.0",
"@angular/platform-browser": "^15.0.0",
"@angular/platform-browser-dynamic": "^15.0.0",
"@angular/router": "^15.0.0",
"codemirror": "^5.65.9",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.12.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.0.0",
"@angular/cli": "^15.0.0",
"@angular/compiler-cli": "^15.0.0",
"@types/codemirror": "^5.60.5",
"@types/jasmine": "~4.3.0",
"@types/node": "^18.11.9",
"cpr": "^3.0.1",
"jasmine-core": "~4.5.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"ng-packagr": "^15.0.0",
"typescript": "~4.8.2"
}
}