-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 3.09 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
{
"name": "angular2-embedly",
"version": "0.0.1",
"description": "embed.ly directive and service for Angular2",
"main": "./angular2-embedly.js",
"typings": "./angular2-embedly.d.ts",
"scripts": {
"prestart": "typings install",
"start": "concurrently \"webpack-dev-server\" \"npm run test:watch\" \"open http://localhost:8000\"",
"build:demo": "webpack -p",
"build:dist": "webpack --config webpack.config.dist.js",
"pretest": "typings install",
"test": "karma start",
"test:watch": "karma start --watch",
"clean": "del ./src/*.d.ts ./demo/*.d.ts ./test/*.d.ts angular2-embedly.d.ts angular2-embedly.js*",
"commit": "git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"typedoc": "typedoc --options typedoc.json angular2-embedly.ts src/*.ts",
"gh-pages": "git checkout gh-pages && git merge master && npm run build:demo && npm run typedoc && git add . && git commit -m 'chore: build demo and docs' && git push && git checkout master",
"prerelease": "npm test",
"release": "standard-version --first-release && git push --follow-tags origin master && npm run build:dist && npm publish",
"postrelease": "npm run clean && npm run gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frnd/angular2-embedly.git"
},
"keywords": [
"angular2"
],
"author": "Fernando González",
"license": "MIT",
"bugs": {
"url": "https://github.com/frnd/angular2-embedly/issues"
},
"homepage": "https://github.com/frnd/angular2-embedly#readme",
"devDependencies": {
"@angular/common": "2.0.0-rc.2",
"@angular/compiler": "2.0.0-rc.2",
"@angular/core": "2.0.0-rc.2",
"@angular/http": "2.0.0-rc.2",
"@angular/platform-browser": "2.0.0-rc.2",
"@angular/platform-browser-dynamic": "2.0.0-rc.2",
"commitizen": "~2.8.1",
"concurrently": "~2.1.0",
"conventional-changelog": "~1.1.0",
"conventional-changelog-cli": "~1.2.0",
"cz-conventional-changelog": "~1.1.6",
"del-cli": "~0.2.0",
"es6-shim": "~0.35.0",
"ghooks": "~1.2.1",
"istanbul-instrumenter-loader": "~0.2.0",
"jasmine-core": "~2.4.1",
"karma": "~0.13.22",
"karma-coverage": "~1.0.0",
"karma-jasmine": "~1.0.2",
"karma-phantomjs-launcher": "~1.0.0",
"karma-sourcemap-loader": "~0.3.7",
"karma-webpack": "~1.7.0",
"phantomjs-prebuilt": "~2.1.7",
"reflect-metadata": "~0.1.3",
"rxjs": "5.0.0-beta.6",
"standard-version": "~2.3.1",
"ts-loader": "~0.8.2",
"tslint": "~3.11.0",
"tslint-loader": "~2.1.4",
"typedoc": "~0.4.3",
"typescript": "~1.8.10",
"typings": "~1.3.0",
"validate-commit-msg": "~2.6.1",
"webpack": "~1.13.0",
"webpack-dev-server": "~1.14.1",
"zone.js": "~0.6.12"
},
"peerDependencies": {
"@angular/core": "2.0.0-rc.2"
},
"files": [
"angular2-embedly.js",
"angular2-embedly.js.map",
"angular2-embedly.d.ts",
"src/**/*.d.ts"
],
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}