-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.15 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
{
"name": "angular-lib-exp",
"version": "0.0.0",
"description": "Common package for angular apps. ",
"main": "./dist/umd/angular-lib-exp.js",
"module": "./dist/esm/src/index.js",
"typings": "./dist/esm/src/index.d.ts",
"scripts": {
"lint": "tslint \"src/**/*.ts\" --noUnusedParameters --noUnusedLocals",
"start": "concurrently --raw \"webpack-dev-server --open --port 1772\" \"npm run test:watch\"",
"build:umd": "webpack --config webpack.config.umd.js --display-error-details",
"build:ngc": "ngc -p tsconfig-ngc.json",
"build:dist": "npm run build:umd && npm run build:ngc",
"build:clean": "rm -rf dist",
"test": "karma start",
"test:watch": "karma start --watch"
},
"dependencies": {
"@angular/common": "^4.3.6",
"@angular/compiler": "^4.3.6",
"@angular/core": "^4.3.6",
"@angular/forms": "^4.3.6",
"@angular/http": "^4.3.6",
"@angular/platform-browser": "^4.3.6",
"@angular/platform-browser-dynamic": "^4.3.6",
"@angular/router": "^4.3.6",
"ts-helper": "0.0.1"
},
"devDependencies": {
"@angular/compiler-cli": "^4.3.6",
"@types/cucumber": "^2.0.3",
"@types/es6-shim": "^0.31.35",
"@types/jasmine": "^2.5.54",
"@types/node": "^8.0.26",
"awesome-typescript-loader": "^3.2.3",
"babel-polyfill": "^6.26.0",
"chai": "^4.1.1",
"codelyzer": "^3.1.2",
"commitizen": "^2.9.6",
"compression-webpack-plugin": "^1.0.0",
"concurrently": "^3.5.0",
"core-js": "^2.5.0",
"extract-text-webpack-plugin": "^3.0.0",
"jasmine-core": "^2.8.0",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "^2.2.4",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-typescript": "^3.0.5",
"karma-webpack": "^2.0.4",
"rxjs": "^5.4.3",
"sinon": "^3.2.1",
"stylelint": "^8.0.0",
"stylelint-webpack-plugin": "^0.9.0",
"ts-loader": "^2.3.4",
"typescript": "^2.4.2",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1",
"webpack-fix-default-import-plugin": "^1.0.3",
"zone.js": "^0.8.17"
}
}