-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
36 lines (36 loc) · 931 Bytes
/
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
{
"name": "ng-emoji-picker",
"version": "6.0.1",
"description": "Angular Emoji Picker",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/lbertenasco/ng-emoji-picker.git"
},
"keywords": [
"angular",
"emoji",
"picker",
"angular emoji picker"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/lbertenasco/ng-emoji-picker/issues"
},
"homepage": "https://github.com/lbertenasco/ng-emoji-picker#readme",
"dependencies": {
"@angular/common": "^6.0.7",
"@angular/core": "^6.0.7",
"@angular/forms": "^6.0.7",
"rxjs": "^6.2.1"
},
"devDependencies": {
"@angular/compiler": "^6.0.7",
"@angular/compiler-cli": "^6.0.7",
"typescript": "2.7.2"
},
"scripts": {
"build": "rm -rf dist/ && ngc build -p ./tsconfig.json",
"release": "npm run build && cp package.json dist/ && cd dist/ && npm publish && cd .."
}
}