|
| 1 | +{ |
| 2 | + "name": "angular-lib-starter", |
| 3 | + "version": "0.0.1", |
| 4 | + "description": "Starter to make Angular libs", |
| 5 | + "main": "bundle.js", |
| 6 | + "jsnext:main": "lib.module.js", |
| 7 | + "module": "lib.module.js", |
| 8 | + "types": "index.d.ts", |
| 9 | + "scripts": { |
| 10 | + "test": "rimraf ./tmp/mocha-webpack && mocha-webpack --opts 'mocha.opts'", |
| 11 | + "build:esm": "ntsc -p tsconfig.esm.json", |
| 12 | + "build:bundle": "webpack --progress --colors", |
| 13 | + "build:aot": "ngc", |
| 14 | + "build": "rimraf build && npm run build:esm && npm run build:bundle && npm run build:aot", |
| 15 | + "copy": "cp package.json dist && cp README.md dist", |
| 16 | + "release": "npm run build && npm run copy" |
| 17 | + }, |
| 18 | + "license": "MIT", |
| 19 | + "devDependencies": { |
| 20 | + "@angular/common": "^4.1.3", |
| 21 | + "@angular/compiler": "^4.1.3", |
| 22 | + "@angular/compiler-cli": "^4.1.3", |
| 23 | + "@angular/core": "^4.1.3", |
| 24 | + "@angular/platform-browser": "^4.1.3", |
| 25 | + "@angular/platform-browser-dynamic": "^4.1.3", |
| 26 | + "@angular/platform-server": "^4.1.3", |
| 27 | + "@types/chai": "^3.5.2", |
| 28 | + "@types/mocha": "^2.2.41", |
| 29 | + "@types/node": "^7.0.18", |
| 30 | + "@types/sinon": "^2.2.2", |
| 31 | + "angular2-template-loader": "^0.6.2", |
| 32 | + "awesome-typescript-loader": "^3.1.3", |
| 33 | + "core-js": "^2.4.1", |
| 34 | + "jsdom": "^10.1.0", |
| 35 | + "mocha": "^3.4.1", |
| 36 | + "mocha-webpack": "^0.7.0", |
| 37 | + "ntypescript": "latest", |
| 38 | + "raw-loader": "^0.5.1", |
| 39 | + "rimraf": "^2.6.1", |
| 40 | + "rxjs": "^5.4.0", |
| 41 | + "source-map-support": "^0.4.15", |
| 42 | + "typescript": "^2.3.2", |
| 43 | + "webpack": "^2.5.1", |
| 44 | + "webpack-node-externals": "^1.6.0", |
| 45 | + "zone.js": "^0.8.10" |
| 46 | + }, |
| 47 | + "dependencies": { |
| 48 | + "css-loader": "^0.28.1", |
| 49 | + "postcss-loader": "^2.0.5", |
| 50 | + "sass-loader": "^6.0.5", |
| 51 | + "to-string-loader": "^1.1.5" |
| 52 | + } |
| 53 | +} |
0 commit comments