forked from ngx-utils/cookies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.77 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
{
"name": "ngx-cookies-next",
"version": "3.0.2",
"description": "Manage your cookies on client and server side (Angular Universal)",
"keywords": [
"angular",
"angular4",
"angular 4",
"angular universal",
"cookie",
"cookies"
],
"main": "bundles/cookies.umd.min.js",
"module": "index.js",
"typings": "index.d.ts",
"scripts": {
"clean:pre": "rimraf release",
"clean:post": "rimraf \"src/**/*.ngfactory.ts\" \"index.ngsummary.json\" \"browser.ngsummary.json\" \"server.ngsummary.json\" \"src/**/*.ngsummary.json\"",
"copy": "cpy LICENSE package.json README.md release",
"build:js": "ngc",
"build:umd": "rollup -c",
"build:minify": "uglifyjs release/bundles/cookies.umd.js --screw-ie8 --compress --mangle --comments --output release/bundles/cookies.umd.min.js",
"prebuild": "npm run clean:pre",
"build": "npm run build:js && npm run build:umd && npm run build:minify",
"postbuild": "npm run clean:post && npm run copy",
"release": "npm run build && cd ./release && npm publish"
},
"peerDependencies": {
"@angular/core": "^6.0.0",
"rxjs": "^6.0.0",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular/common": "^6.0.0",
"@angular/compiler": "^6.0.0",
"@angular/compiler-cli": "^6.0.0",
"@angular/core": "^6.0.0",
"cpy-cli": "^1.0.1",
"rimraf": "^2.6.1",
"rollup": "^0.43.0",
"rxjs": "^6.1.0",
"typescript": "~2.7.2",
"uglify-js": "^3.0.18",
"zone.js": "^0.8.26"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/ngx-utils/cookies.git"
},
"homepage": "https://github.com/ngx-utils/cookies#readme",
"bugs": {
"url": "https://github.com/ngx-utils/cookies/issues"
},
"author": "Anton Barada",
"license": "MIT"
}