-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·92 lines (92 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·92 lines (92 loc) · 2.39 KB
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
{
"name": "@lcluber/kraitjs",
"version": "2.3.0",
"description": "Key bindings library written in TypeScript with multiple keystroke detection.",
"keywords": [
"key binding"
],
"homepage": "http://kraitjs.lcluber.com",
"main": "dist/krait",
"types": "dist/krait",
"bugs": {
"url": "https://github.com/LCluber/Krait.js/issues",
"email": ""
},
"repository": {
"type": "git",
"url": "https://github.com/LCluber/Krait.js.git"
},
"license": "MIT",
"author": {
"name": "Ludovic Cluber",
"url": "http://www.lcluber.com/",
"email": "http://www.lcluber.com/contact"
},
"contributors": [],
"scripts": {
"start": "node ./bin/www",
"pretty": "prettier --check 'src/ts/*.ts' --write",
"test": ""
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "",
"pre-push": ""
}
},
"files": [
"dist/"
],
"dependencies": {
"@lcluber/chjs": "2.10.0",
"body-parser": "1.16.1",
"cookie-parser": "1.4.3",
"express": "4.14.1",
"i18next": "4.0.0",
"i18next-express-middleware": "1.0.2",
"i18next-node-fs-backend": "0.1.3",
"morgan": "1.8.1",
"pug": "2.0.0-beta11",
"serve-favicon": "2.4.0"
},
"devDependencies": {
"@lcluber/weejs": "1.0.1",
"@fortawesome/fontawesome-free": "5.3.1",
"babel-core": "6.26.3",
"babel-preset-es2015": "6.24.1",
"bootstrap": "3.3.7",
"jquery": "3.2.1",
"jquery-easing": "0.0.1",
"connect-livereload": "0.6.0",
"grunt": "1.0.1",
"grunt-contrib-clean": "1.1.0",
"grunt-contrib-uglify": "3.0.1",
"grunt-contrib-cssmin": "2.2.0",
"grunt-contrib-concat": "1.0.1",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-sass": "1.0.0",
"grunt-contrib-htmlmin": "2.4.0",
"grunt-contrib-jshint": "1.1.0",
"grunt-contrib-csslint": "2.0.0",
"grunt-strip-code": "1.0.6",
"grunt-contrib-watch": "1.0.0",
"grunt-concurrent": "2.3.1",
"grunt-nodemon": "0.4.2",
"grunt-open": "0.2.3",
"grunt-ts": "5.5.1",
"grunt-tslint": "5.0.1",
"grunt-typedoc": "0.2.4",
"grunt-rollup": "9.0.0",
"grunt-sass": "3.0.1",
"husky": "2.7.0",
"node-sass": "4.14.1",
"prettier": "1.18.2",
"pretty-quick": "1.11.1",
"rollup-plugin-babel": "3.0.4",
"rollup-plugin-node-resolve": "3.3.0",
"time-grunt": "1.4.0",
"tslint": "5.9.1",
"typescript": "3.2.2"
}
}