-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 1.94 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
{
"$schema": "http://json.schemastore.org/package",
"name": "canonn-decryptor",
"version": "1.0.0",
"description": "Tool to decrypt the mysteries of the Elite Dangerous universe",
"keywords": [
"Elite: Dangerous",
"Elite",
"Canonn",
"Decryptor"
],
"homepage": "https://kayahr.github.io/canonn-decryptor/",
"author": {
"name": "Klaus Reimer",
"email": "k@ailis.de",
"url": "https://github.com/kayahr/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kayahr/canonn-decryptor"
},
"scripts": {
"clean": "del-cli lib",
"compile": "tsc",
"watch": "tsc -w",
"check": "cd src && jasmine",
"package": "webpack",
"start": "http-server .",
"lint": "tslint --project . && csslint assets",
"prepare": "npm run -s clean && npm run -s compile",
"test": "npm run -s lint && npm run -s check"
},
"files": [
"lib/main",
"src/main"
],
"directories": {
"lib": "./lib/"
},
"devDependencies": {
"@types/base64-js": "=1.2.5",
"@types/jasmine": "=2.8.2",
"@types/lz-string": "=1.3.32",
"@types/node": "=8.0.53",
"@types/systemjs": "=0.20.6",
"copy-webpack-plugin": "=4.2.3",
"csslint": "=1.0.5",
"del-cli": "=1.1.0",
"http-server": "=0.10.0",
"jasmine": "=2.8.0",
"source-map-loader": "=0.2.3",
"systemjs": "=0.20.19",
"systemjs-plugin-json": "=0.3.0",
"tslint": "=5.8.0",
"typescript": "=2.6.2",
"uglifyjs-webpack-plugin": "=1.1.2",
"webpack": "=3.9.1"
},
"dependencies": {
"@angular/common": "=5.0.5",
"@angular/compiler": "=5.0.5",
"@angular/core": "=5.0.5",
"@angular/forms": "=5.0.5",
"@angular/platform-browser": "=5.0.5",
"@angular/platform-browser-dynamic": "=5.0.5",
"@angular/router": "=5.0.5",
"base64-js": "=1.2.1",
"core-js": "=2.5.1",
"rxjs": "=5.5.3",
"zone.js": "=0.8.18",
"lz-string": "=1.4.4",
"tslib": "=1.8.0"
}
}