-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
48 lines (48 loc) · 1.27 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
{
"name": "ngx-flickity",
"version": "0.0.8",
"description": "Angular2 component for https://flickity.metafizzy.co/",
"main": "dist/index.js",
"dependencies": {
"flickity": "^2.0.6"
},
"devDependencies": {
"@angular/compiler": "^4.0.0",
"@angular/compiler-cli": "^4.0.2",
"@angular/core": "^4.0.0",
"@angular/common": "~4.0.0",
"@types/flickity": "^1.1.31",
"core-js": "^2.4.0",
"rxjs": "^5.1.0",
"typescript": "^2.1.0",
"zone.js": "^0.8.0"
},
"scripts": {
"init": "npm install",
"start": "npm run build",
"watch": "watch 'npm run build' src/",
"clean": "rm -rf dist bundles node_modules",
"build": "npm run build:aot",
"deploy": "npm run build && npm publish",
"release": "npm version -m 'New release with version %s'",
"build:js": "ngc -p src/tsconfig.json",
"build:aot": "npm run build:js"
},
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/geex-arts/ngx-flickity.git"
},
"keywords": [
"angular2",
"component",
"flickity",
"gallery"
],
"author": "Denis Kildishev",
"license": "MIT",
"bugs": {
"url": "https://github.com/geex-arts/ngx-flickity/issues"
},
"homepage": "https://github.com/geex-arts/ngx-flickity"
}