-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
executable file
·61 lines (61 loc) · 1.49 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
{
"name": "telemachy",
"version": "3.2.1",
"description": "Easy guided tours for Angular apps",
"scripts": {
"clean": "rimraf bundles src/**/*.d.ts src/**/*.metadata.json src/**/*.js tests/**/*.d.ts tests/**/*.metadata.json tests/**/*.js index.d.ts index.metadata.json index.js",
"clean-build": "npm run clean && npm run build && npm run prepublish",
"build": "rimraf dist && ng-packagr -p package.json"
},
"repository": {
"type": "git",
"url": "https://github.com/code-orange/telemachy.git"
},
"keywords": [
"angular2",
"angular",
"ng2",
"ng",
"tour",
"guided",
"guide",
"tutorial"
],
"author": "Tim van Dalen <tim@code-orange.nl>",
"license": "MIT",
"homepage": "https://github.com/code-orange/telemachy#readme",
"bugs": {
"url": "https://github.com/code-orange/telemachy/issues"
},
"peerDependencies": {
"@angular/core": ">=6.1.8",
"rxjs": "^6.3.2"
},
"devDependencies": {
"@angular/common": "^6.1.8",
"@angular/compiler": "^6.1.8",
"@angular/compiler-cli": "^6.1.8",
"@angular/core": "^6.1.8",
"@angular/platform-browser": "^6.1.8",
"@angular/router": "^6.1.8",
"ng-packagr": "^4.2.0",
"postcss-discard-comments": "^2.0.4",
"rimraf": "2.6.1",
"rxjs": "6.0",
"ts-helpers": "1.1.2",
"tslint": "4.5.1",
"typescript": "^2.8.3",
"zone.js": "^0.8.20"
},
"dependencies": {
"angular-2-local-storage": "^2.0.0"
},
"ngPackage": {
"whitelistedNonPeerDependencies": [
"angular-2-local-storage"
],
"lib": {
"entryFile": "index.ts"
}
}
}