-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.36 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
{
"name": "hive-layout",
"version": "0.1.4",
"description": "Simple UI framework, for a simple web application",
"keywords": [
"components",
"layout",
"ui",
"uxf"
],
"homepage": "https://github.com/hivesolutions/layout#readme",
"bugs": {
"url": "https://github.com/hivesolutions/layout/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hivesolutions/layout.git"
},
"license": "Apache-2.0",
"author": "Hive Solutions",
"main": "js/layout.js",
"files": [
"index.js",
"css/**/*.css",
"fonts/**/*.ttf",
"images/**/*.gif",
"images/**/*.png",
"js/**/*.js",
"test/**/*.js"
],
"scripts": {
"lint": "eslint \"./js/layout.js\"",
"prettier": "prettier \"./*.{js,json}\" \"./{js,test}/**/*.{js,json}\" --write",
"test": "mocha --recursive",
"upgrade": "npx sort-package-json && ncu -u"
},
"dependencies": {
"jquery": "^3.5.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-hive": "^0.2.2",
"mocha": "^7.1.1",
"npm-check-updates": "^4.1.2",
"prettier": "^2.0.4",
"prettier-config-hive": "^0.1.7",
"sort-package-json": "^1.41.0"
}
}