forked from zyra/ngx-facebook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.44 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
{
"name": "ngx-facebook",
"version": "2.4.0",
"description": "Facebook TypeScript SDK for Angular2",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
"main": "dist/umd/index.js",
"scripts": {
"prebuild": "rm -rf aot dist",
"build": "gulp build",
"postbuild": "rm -rf aot",
"build:dev": "npm run build && cp -r dist ../ng2-facebook-sdk-example/node_modules/ngx-facebook/",
"pretest": "rm -rf dist && tsc",
"test": "karma start karma.conf.js --single-run",
"pretest:watch": "npm run pretest",
"test:watch": "concurrently \"tsc -w\" \"karma start karma.conf.js\"",
"docs": "zm-docs-gen",
"postversion": "npm run changelog",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"postchangelog": "git commit -am \"chore(): update changelog\"",
"lint": "tslint \"src/**/*.ts\"",
"prepublish": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zyra/ngx-facebook.git"
},
"keywords": [
"facebook",
"angular2",
"sdk"
],
"author": "Zyra Media Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/zyra/ngx-facebook/issues"
},
"homepage": "https://github.com/zyra/ngx-facebook",
"devDependencies": {
"@angular/common": "4.1.2",
"@angular/compiler": "4.1.2",
"@angular/compiler-cli": "4.1.2",
"@angular/core": "4.1.2",
"@angular/platform-browser": "4.1.2",
"@angular/platform-browser-dynamic": "4.1.2",
"@types/fs-extra": "^2.0.0",
"@types/gulp": "^4.0.2",
"@types/jasmine": "^2.5.47",
"@types/node": "^7.0.12",
"@zyramedia/docs-gen": "^1.7.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"codelyzer": "^2.1.1",
"concurrently": "^3.4.0",
"conventional-changelog-cli": "^1.3.1",
"core-js": "^2.4.1",
"fs-extra": "^2.1.2",
"gulp": "git+https://github.com/gulpjs/gulp.git#4.0",
"jasmine-core": "^2.5.2",
"karma": "^1.5.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sauce-launcher": "^1.1.0",
"lodash": "^4.17.4",
"rxjs": "5.1.1",
"systemjs": "^0.20.11",
"ts-node": "^3.0.2",
"tslint": "4.5.1",
"tslint-eslint-rules": "^3.5.1",
"typescript": "^2.3.3",
"zone.js": "0.8.11"
}
}