forked from chenqingspring/ng-lottie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.25 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
95
96
{
"name": "ng-lottie",
"version": "0.3.2",
"description": "lottie animation view for angular",
"main": "./dist/umd/LottieAnimationView.js",
"module": "./dist/esm/src/index.js",
"typings": "./dist/esm/src/index.d.ts",
"scripts": {
"start": "concurrently --raw \"webpack-dev-server --open\" \"npm run test:watch\"",
"build:demo": "webpack -p",
"build:umd": "webpack --config webpack.config.umd.js",
"build:ngc": "ngc -p tsconfig-ngc.json",
"build:dist": "npm run build:umd && npm run build:ngc",
"build:clean": "rm -rf dist",
"test": "karma start",
"test:watch": "karma start --watch",
"commit": "git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"typedoc": "typedoc --options typedoc.json src/*.ts",
"gh-pages": "git checkout gh-pages && git merge master --no-edit && npm run build:demo && npm run typedoc && git add . && git commit -m 'chore: build demo and docs' && git push && git checkout master",
"release": "git add package.json && git commit -m 'chore: bump version number' && standard-version --first-release && git push --follow-tags origin master && npm run build:dist && npm publish",
"postrelease": "npm run build:clean && npm run gh-pages"
},
"repository": "git+https://github.com/chenqingspring/ng-lottie.git",
"keywords": [
"angular2",
"angular4",
"angular"
],
"author": "CHEN Qing",
"license": "MIT",
"bugs": {
"url": "https://github.com/chenqingspring/ng-lottie/issues"
},
"homepage": "https://github.com/chenqingspring/ng-lottie#readme",
"devDependencies": {
"@angular/common": "^9.0.2",
"@angular/compiler": "^9.0.2",
"@angular/compiler-cli": "^9.0.2",
"@angular/core": "^9.0.2",
"@angular/platform-browser": "^9.0.2",
"@angular/platform-browser-dynamic": "^9.0.2",
"@types/chai": "^3.4.30",
"@types/core-js": "^0.9.32",
"@types/jasmine": "2.5.41",
"@types/lodash": "^4.14.149",
"@types/node": "^13.7.4",
"@types/sinon": "^1.16.27",
"@types/sinon-chai": "^2.7.26",
"awesome-typescript-loader": "^3.1.2",
"chai": "^3.5.0",
"codelyzer": "^5.2.1",
"commitizen": "^2.8.1",
"concurrently": "^3.0.0",
"conventional-changelog": "^1.1.0",
"conventional-changelog-cli": "^1.2.0",
"core-js": "^2.4.1",
"cz-conventional-changelog": "^1.2.0",
"husky": "^0.12.0",
"imports-loader": "^0.7.0",
"jasmine-core": "^2.5.0",
"karma": "^1.3.0",
"karma-coverage": "^1.1.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-remap-istanbul": "^0.4.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"phantomjs-prebuilt": "^2.1.7",
"rxjs": "^6.5.4",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"sourcemap-istanbul-instrumenter-loader": "^0.2.0",
"standard-version": "^4.0.0",
"tslint": "^6.0.0",
"tslib": "^1.11.0",
"tslint-loader": "^3.3.0",
"typedoc": "^0.5.0",
"typescript": "~3.7.5",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.16.1",
"zone.js": "^0.10.2"
},
"peerDependencies": {},
"dependencies": {
"lottie-web": "^5.1.3"
},
"files": [
"dist"
],
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}