forked from Harvest-Dev/ng-walkthrough
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.3 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "angular-walkthrough",
"version": "0.6.18",
"description": "Walkthrough, an Angular library",
"baseUrl": "./",
"author": "Célian Veyssière",
"main": "./dist/bundles/angular-walkthrough.umd.js",
"module": "./dist/angular-walkthrough.es5.js",
"es2015": "./dist/angular-walkthrough.js",
"typings": "./dist/angular-walkthrough.d.ts",
"license": "MIT",
"private": false,
"scripts": {
"build": "node ./tasks/build",
"clean": "npm cache clean --force && npm run rimraf -- \"node_modules/!(rimraf|.bin)\" \"node_modules/.bin/!(rimraf|rimraf.cmd)\" .awcache doc coverage compiled dll dist dist_lib node_cache out-tsc && rm -rf node_modules || echo clean",
"lint": "tslint ./src/**/*.ts",
"postbuild": "rimraf build",
"posttagVersion": "npm run build && npm publish dist",
"prebuild": "rimraf dist out-tsc",
"rimraf": "rimraf",
"start": "webpack-dev-server --open --config ./webpack/webpack.dev.js",
"tagVersion": "node ./tasks/tag-version",
"test": "node ./tasks/test",
"publish": "npm publish ./dist --tag latest"
},
"keywords": [
"walkthrough",
"angular"
],
"dependencies": {
"@angular/cdk": "^5.0.0",
"@angular/common": "^5.0.0",
"@angular/compiler": "^5.0.0",
"@angular/core": "^5.0.0",
"@angular/platform-browser": "^5.0.0",
"@angular/platform-browser-dynamic": "^5.0.0",
"core-js": "^2.4.1",
"rxjs": "^5.5.2",
"zone.js": "^0.8.14"
},
"devDependencies": {
"@angular/compiler-cli": "^5.0.0",
"@types/jasmine": "2.2.30",
"@types/node": "8.0.58",
"angular-librarian": "1.0.0",
"angular2-template-loader": "0.6.0",
"awesome-typescript-loader": "^3.0.0",
"codelyzer": "^4.0.0",
"css-loader": "^0.28.0",
"css-to-string-loader": "^0.1.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.0.0",
"fs-extra": "^2.1.2",
"html-webpack-plugin": "^2.0.0",
"istanbul-instrumenter-loader": "^3.0.0",
"jasmine-core": "^2.0.0",
"jasmine-spec-reporter": "^4.0.0",
"karma": "^1.0.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.0",
"node-sass": "^4.1.1",
"np": "^2.12.0",
"phantomjs-prebuilt": "^2.1.7",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.2",
"rollup": "0.52.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "3.0.0",
"rollup-plugin-sourcemaps": "0.4.2",
"rollup-plugin-uglify": "2.0.1",
"sass-loader": "^6.0.0",
"script-loader": "^0.7.0",
"semver": "^5.0.0",
"source-map-loader": "^0.2.0",
"style-loader": "^0.19.0",
"tslint": "^5.0.0",
"tslint-loader": "^3.0.0",
"typescript": "~ 2.4.2",
"url-loader": "^0.6.2",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.0.0",
"webpack-merge": "^0.14.0",
"webpack-node-externals": "^1.5.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zefling/ng-walkthrough.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.com"
},
"bugs": {
"url": "https://github.com/Zefling/ng-walkthrough/issues"
},
"homepage": "https://github.com/Zefling/ng-walkthrough#readme",
"files": [
"dist/"
]
}