-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 3.18 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
{
"name": "ack-angular-fx",
"version": "5.0.2",
"description": "Angular animations made easier",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": {
"ack-angular-fx": "./bin/bin-src/cli.js"
},
"scripts": {
"test": "npm run compile:allfx",
"build:templates": "ack-pug-bundler example/src example/src --outFileExt template.ts --outType ts --oneToOne",
"watch:templates": "npm run build:templates -- --watch",
"watch:ts": "ng serve --port 4202 --open",
"start": "ack-reload -d example/www",
"watch": "npm-run-all --parallel build:templates watch:templates watch:ts",
"build:example": "npm-run-all build:templates build:example:js",
"build:example:js": "ng build example --stats-json --output-hashing none",
"build:dist:build": "ngc --project src/tsconfig.json",
"build:dist:replace": "node ./replacements",
"build:dist": "npm-run-all build:dist:build",
"build": "npm-run-all build:bin build:dist build:example",
"build:old": "npm-run-all build:bin compile:allfx build:dist build:example",
"build:bin": "tsc bin-src/* --outDir ./bin --declaration true --lib ES6",
"ts-node": "ts-node",
"compile:allfx": "node ./bin/bin-src/real-cli.js --igniter void --select absoluteSwap,100,200,300,400,500,600,700,800,900,1000,1500,2000,childStag --effects bounce,fade --out src/allFx.ts",
"save": "npm-run-all build patch:version save:git",
"save:git": "git add . && git commit -m \"update\" && git push",
"patch:version": "npm --no-git-tag-version version patch",
"deploy": "npm-run-all save deploy:gh-pages deploy:npm",
"deploy:npm": "npm publish",
"deploy:gh-pages": "cp -R ./example/www/. ../gh-pages && cd ../gh-pages && git add . && git commit -m \"update\" && git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ackerapple/ack-angular-fx.git"
},
"keywords": [
"Angular animations",
"Angular fx",
"ng animations",
"angular router animations",
"angular/animations"
],
"author": "Acker Dawn Apple",
"license": "MIT",
"peerDependencies": {
"@angular/core": ">=9.1.7",
"@angular/common": ">=9.1.7",
"@angular/animations": ">=9.1.7",
"@angular/router": ">=9.1.7"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.2.3",
"@angular/animations": "^14.2.0",
"@angular/cli": "~14.2.3",
"@angular/common": "^14.2.0",
"@angular/compiler": "^14.2.0",
"@angular/compiler-cli": "^14.2.0",
"@angular/core": "^14.2.0",
"@angular/forms": "^14.2.0",
"@angular/platform-browser": "^14.2.0",
"@angular/platform-browser-dynamic": "^14.2.0",
"@angular/router": "^14.2.0",
"@types/jasmine": "^3.5.10",
"@types/node": "^14.0.1",
"ack-path": "^1.8.0",
"ack-pug-bundler": "^1.4.7",
"ack-reload": "^3.0.3",
"mkdirp": "^1.0.4",
"npm-run-all": "^4.1.5",
"pug-cli": "^1.0.0-alpha6",
"raw-loader": "^4.0.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.5",
"ts-node": "^8.10.1",
"typescript": "~4.7.2",
"zone.js": "~0.11.4"
},
"bugs": {
"url": "https://github.com/ackerapple/ack-angular-fx/issues"
},
"homepage": "https://github.com/ackerapple/ack-angular-fx#readme"
}