-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 3.08 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 3.08 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
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
{
"name": "angularlib-services",
"version": "1.0.0",
"description": "Example of how to create an angular module exporting services in order to be consumed as an npm package.",
"devDependencies": {
"@angular/common": "^4.3.2",
"@angular/compiler": "^4.3.2",
"@angular/compiler-cli": "^4.3.2",
"@angular/core": "^4.3.2",
"@angular/http": "^4.3.2",
"@angular/platform-browser": "^4.3.2",
"@angular/platform-browser-dynamic": "^4.3.2",
"@types/jasmine": "^2.5.53",
"@types/node": "^8.0.13",
"@types/webpack": "^3.0.5",
"awesome-typescript-loader": "^3.2.2",
"codelyzer": "^3.1.2",
"copyfiles": "^1.2.0",
"istanbul-instrumenter-loader": "^3.0.0",
"jasmine-core": "^2.6.4",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "^2.2.3",
"karma-remap-coverage": "^0.1.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.4",
"replace-in-file": "^2.5.4",
"rimraf": "^2.6.1",
"rollup": "^0.45.2",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rxjs": "^5.4.2",
"source-map-loader": "^0.2.1",
"tslint": "^5.5.0",
"typescript": "^2.4.1",
"uglify-js": "^3.0.25",
"webpack": "^2.2.0",
"zone.js": "^0.8.13"
},
"scripts": {
"ngc": "ngc",
"rollup": "rollup",
"karma": "karma",
"lint": "tslint 'src/**/*.ts'",
"fix-ngc-paths": "node ./tools/fix-ngc-paths",
"transpile:es2015": "ngc -p tsconfig.es2015.json && npm run fix-ngc-paths",
"transpile:es5": "ngc -p tsconfig.es5.json && npm run fix-ngc-paths",
"copy:buildartifacts": "copyfiles -u 1 src/package.json src/README.md build/**/*.d.ts build/**/*.metadata.json dist",
"package:es5": "rollup -c rollup.config.es5.js",
"package:es2015": "rollup -c rollup.config.es2015.js",
"package:umd": "rollup -c rollup.config.umd.js",
"build:es5umd": "rimraf build && npm run transpile:es5 && npm run package:es5 && npm run package:umd",
"build:es2015": "rimraf build && npm run transpile:es2015 && npm run package:es2015",
"build": "npm run lint && rimraf dist coverage && npm run build:es5umd && npm run build:es2015 && npm run copy:buildartifacts && npm run minify && rimraf build",
"minify": "uglifyjs dist/bundles/angularlib-services.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/angularlib-services.umd.min.js",
"prepublishOnly": "npm run build && npm run test:ci",
"test": "karma start --auto-watch --no-single-run",
"test:ci": "karma start",
"publish": "npm publish dist --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robertohuertasm/angularlib-services.git"
},
"keywords": [
"angular",
"modules",
"services",
"library"
],
"author": "Roberto Huertas <roberto.huertas@outlook.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/robertohuertasm/angularlib-services/issues"
},
"homepage": "https://github.com/robertohuertasm/angularlib-services#readme"
}