forked from beeman/angular-module-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.77 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.77 KB
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
{
"name": "wp-client",
"version": "1.0.0",
"description": "WP Client for WAR Framework",
"main": "dist/bundles/wp-client.umd.js",
"module": "dist/index.js",
"scripts": {
"cleanup": "rimraf dist/bundles dist/src dist/index.d.ts dist/index.metadata.json dist/index.js dist/index.js.map dist/LICENSE dist/README.md",
"bundling": "rollup -c",
"minify": "uglifyjs dist/bundles/wp-client.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/wp-client.umd.min.js",
"copy": "copyfiles LICENSE README.md dist",
"build": "npm run cleanup && ngc && npm run bundling && npm run minify && npm run copy",
"publish-to-npm": "cd dist && npm publish"
},
"keywords": [
"angular",
"WordPress"
],
"author": "BMO",
"contributors": [
"Cyrille Tuzi (https://github.com/cyrilletuzi/angular-async-local-storage)",
"Bram Borggreve (https://github.com/beeman/angular-module-starter)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/SkyPressATX/war-angular-wp-client"
},
"homepage": "https://github.com/SkyPressATX/war-angular-wp-client",
"bugs": {
"url": "https://github.com/SkyPressATX/war-angular-wp-client/issues"
},
"dependencies": {
"@angular/core": "^5.0.0",
"@angular/common": "^5.0.0",
"@angular/compiler": "^5.0.0",
"@angular/http": "^5.0.0",
"@angular/platform-browser": "^5.0.0",
"@angular/platform-browser-dynamic": "^5.0.0",
"reflect-metadata": "^0.1.8",
"rxjs": "^5.5.2",
"zone.js": "^0.8.4"
},
"devDependencies": {
"@angular/cli": "1.5.0",
"@angular/compiler-cli": "^5.0.0",
"copyfiles": "^1.0.0",
"rimraf": "^2.5.4",
"rollup": "^0.37.0",
"tslint": "~5.7.0",
"typescript": "~2.4.2",
"uglify-js": "^2.7.5"
}
}