-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.47 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "ng-realmark",
"version": "1.0.0",
"description": "Real-time Markdown W/ Markdown three way merge",
"main": "ng-realmark.js",
"config": {
"update": "patch"
},
"scripts": {
"run:demo": "npm run copy:tsconfig && ng serve",
"copy:package": "cpx './package-dist.json' dist && renamer --find 'package-dist.json' --replace 'package.json' ./dist/*",
"copy:read": "cpx './readme.md' dist",
"copy:tsconfig": "cpx './tsconfig.demo.js' dist && renamer --find 'tsconfig.demo.js' --replace 'tsconfig.js' ./dist/*",
"copy": "npm run copy:read && npm run copy:package",
"compile:lib": "node ./scripts/clean.js && tsc -p src/tsconfig.json && ngc -p src/tsconfig.json",
"compile:css": "node-sass src/realmark.scss dist/realmark.css",
"compile:demo": "npm run copy:tsconfig && ng build --prod --base-href=/ng-realmark/",
"compile": "npm run compile:lib && npm run compile:css && npm run compile:demo",
"package:lib": "rollup -c && uglifyjs dist/bundles/ng-realmark.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/ng-realmark.umd.min.js",
"package": "npm run package:lib && npm run copy ",
"build:lib": "npm run compile && npm run package",
"build": "npm run build:lib",
"publish:npm": "npm run build && cd ./dist && npm version $npm_package_config_update && npm publish",
"test": "ng test",
"test:w": "ng test --single-run false --browsers Chrome --reporters kjhtml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liammann/ng-realmark.git"
},
"typings": "./ng-realmark.d.ts",
"keywords": [
"angular.io",
"angular",
"markdown",
"code highlighting",
"markdown 3 way merge",
"markdown three way merge",
"markdown diff"
],
"author": "Liam Mann",
"license": "ISC",
"bugs": {
"url": "https://github.com/liammann/ng-realmark/issues"
},
"homepage": "https://github.com/liammann/ng-realmark#readme",
"dependencies": {
"@angular/core": "^6.1.8",
"@angular/forms": "^6.1.8",
"@angular/platform-browser": "^6.1.8",
"@angular/platform-browser-dynamic": "^6.1.8",
"@types/diff": "^3.2.0",
"diff": "^3.5.0",
"es6-shim": "^0.35.0",
"prismjs": "^1.15.0",
"reflect-metadata": "0.1.12",
"rxjs": "^6.3.2",
"showdown": "^1.8.6",
"zone.js": "^0.8.26",
"rxjs-compat": "^6.0.0-rc.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.8.0",
"@angular/cli": "^6.2.3",
"@angular/common": "^6.1.8",
"@angular/compiler": "^6.1.8",
"@angular/compiler-cli": "^6.1.8",
"@angular/http": "^6.1.8",
"@angular/router": "^6.1.8",
"@types/extend": "^3.0.0",
"@types/jasmine": "^2.8.8",
"@types/prismjs": "^1.9.0",
"@types/showdown": "^1.7.5",
"core-js": "^2.5.7",
"cpx": "^1.5.0",
"fs-extra": "^7.0.0",
"jasmine": "^2.99.0",
"jasmine-core": "^2.99.0",
"jasmine-spec-reporter": "~4.1.0",
"karma": "~1.7.1",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~1.4.2",
"karma-jasmine": "~1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"node-sass": "^4.9.3",
"protractor": "^5.4.1",
"renamer": "^1.0.0",
"rimraf": "^2.6.2",
"rollup": "^0.66.2",
"rollup-analyzer": "^1.1.0",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-inject": "^2.2.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-uglify": "^6.0.0",
"ts-node": "^7.0.1",
"typescript": "^2.9.0",
"uglify-js": "^3.4.9"
}
}