This repository has been archived by the owner on Nov 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
95 lines (95 loc) · 2.58 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
{
"name": "leaderboard",
"version": "1.0.0",
"description": "Leaderboard, a timing game",
"scripts": {
"test": "karma start karma.config.js --single-run",
"test:watch": "karma start karma.config.js",
"start": "./script/start.sh",
"package": "./script/package.sh",
"commit": "git-cz",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"lint:fix": "yarn lint -- --fix"
},
"author": {
"name": "Spyros Ioakeimidis",
"email": "[email protected]",
"url": "http://www.spyros.io"
},
"repository": {
"type": "git",
"url": "git+https://github.com/usabilla/leaderboard.git"
},
"keywords": [
"usabilla",
"leaderboard",
"electron",
"angular",
"game"
],
"bugs": {
"url": "https://github.com/usabilla/leaderboard/issues"
},
"homepage": "https://github.com/usabilla/leaderboard#readme",
"main": "main.js",
"license": "MIT",
"dependencies": {
"angucomplete-alt": "^3.0.0",
"angular": "^1.5.8",
"angular-audio": "^1.7.3",
"angular-hotkeys": "^1.7.0",
"angular-local-storage": "^0.5.0",
"angular-messages": "^1.5.8",
"angular-timer": "^1.3.3",
"angular-ui-router": "^0.4.2",
"humanize-duration": "^3.9.1",
"lodash": "^4.15.0",
"moment": "^2.14.1",
"pouchdb": "6.0.4",
"randomstring": "^1.1.5",
"uikit": "^2.27.1"
},
"devDependencies": {
"@types/angular": "^1.6.6",
"@types/angular-hotkeys": "^0.0.31",
"@types/angular-ui-router": "^1.1.36",
"@types/jasmine": "^2.5.43",
"@types/jquery": "^2.0.40",
"@types/node": "^7.0.5",
"@types/randomstring": "^1.1.5",
"angular-mocks": "^1.6.2",
"awesome-typescript-loader": "^3.0.4",
"commitizen": "^2.9.6",
"concurrently": "^3.3.0",
"css-loader": "^0.26.1",
"cz-conventional-changelog": "^1.2.0",
"devtron": "^1.3.0",
"electron": "^1.6.0",
"electron-packager": "^8.0.0",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"file-loader": "^0.10.0",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.22.0",
"jasmine-core": "^2.5.2",
"karma": "^1.4.1",
"karma-electron": "^5.1.1",
"karma-jasmine": "^1.1.0",
"karma-webpack": "^2.0.2",
"ng-annotate-loader": "^0.2.0",
"node-sass": "^4.5.0",
"rimraf": "^2.5.4",
"sass-loader": "^6.0.1",
"style-loader": "^0.13.1",
"tslint": "^4.4.2",
"typescript": "^2.2.0",
"wallaby-webpack": "^0.0.33",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0",
"webpack-merge": "^2.6.1"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}