forked from scttcper/ngx-emoji-mart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.73 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
{
"name": "@ctrl/ngx-emoji-mart",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ts-node -O '{ \"module\": \"commonjs\" }' build.ts",
"build-data": "ts-node scripts/build-data.ts",
"test": "ng test --watch=false --browsers=ChromeCI",
"test:watch": "ng test --browsers=ChromeCI",
"test:ci": "ng test --watch=false --code-coverage --no-progress --browsers=ChromeCI",
"link": "cd dist/packages-dist && npm link",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"ghpages": "ng build --prod --no-progress --baseHref='/ngx-emoji-mart/'",
"bundlesize": "npx bundlesize",
"travis-deploy-once": "travis-deploy-once",
"commit": "git-cz",
"semantic-release": "cd dist/packages-dist && semantic-release"
},
"private": true,
"dependencies": {
"@angular/common": "6.1.7",
"@angular/compiler": "6.1.7",
"@angular/core": "6.1.7",
"@angular/forms": "6.1.7",
"@angular/http": "6.1.7",
"@angular/platform-browser": "6.1.7",
"@angular/platform-browser-dynamic": "6.1.7",
"@ctrl/ngx-github-buttons": "2.0.4",
"bootstrap": "4.1.3",
"core-js": "2.5.7",
"rxjs": "6.3.2",
"zone.js": "0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.7.5",
"@angular/cli": "6.1.5",
"@angular/compiler-cli": "6.1.7",
"@angular/language-service": "6.1.7",
"@types/fs-extra": "5.0.4",
"@types/inflection": "1.5.28",
"@types/jasmine": "2.8.8",
"@types/jasminewd2": "2.0.3",
"@types/node": "10.9.4",
"@types/rimraf": "2.0.2",
"@types/stringify-object": "3.2.0",
"codelyzer": "4.4.4",
"commitizen": "2.10.1",
"cz-conventional-changelog": "2.1.0",
"emoji-datasource": "4.0.4",
"emojilib": "2.3.0",
"fs-extra": "7.0.0",
"inflection": "1.12.0",
"jasmine-core": "3.2.1",
"karma": "3.0.0",
"karma-chrome-launcher": "2.2.0",
"karma-coverage-istanbul-reporter": "2.0.3",
"karma-jasmine": "1.1.2",
"karma-jasmine-html-reporter": "1.3.1",
"karma-mocha-reporter": "2.2.5",
"ng-packagr": "4.1.1",
"rimraf": "2.6.2",
"semantic-release": "15.9.12",
"stringify-object": "3.2.2",
"travis-deploy-once": "5.0.7",
"ts-node": "7.0.1",
"tslint": "5.11.0",
"typescript": "2.9.2"
},
"engines": {
"npm": ">= 6",
"node": ">= 8"
},
"release": {
"branch": "master"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"bundlesize": [
{
"path": "./dist/packages-dist/bundles/ctrl-ngx-emoji-mart.umd.min.js",
"maxSize": "10 kB"
},
{
"path": "./dist/packages-dist/ngx-emoji/bundles/ctrl-ngx-emoji-mart-ngx-emoji.umd.min.js",
"maxSize": "60 kB"
}
]
}