-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.79 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": "uxf",
"version": "0.2.6",
"description": "Simple client side framework for people who want fast results",
"keywords": [
"components",
"ui",
"uxf"
],
"homepage": "https://github.com/hivesolutions/uxf#readme",
"bugs": {
"url": "https://github.com/hivesolutions/uxf/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hivesolutions/uxf.git"
},
"license": "Apache-2.0",
"author": "Hive Solutions",
"main": "index.js",
"unpkg": "bin/js/ux.js",
"files": [
"index.js",
"bin/**/*.css",
"bin/**/*.css.gz",
"bin/**/*.js",
"bin/**/*.js.gz",
"bin/**/*.png",
"bin/**/*.gif",
"css/**/*.css",
"js/**/*.js",
"test/**/*.js",
"vue/**/*.js",
"vue/**/*.vue"
],
"scripts": {
"build": "cleanup .",
"lint": "eslint \"./{js,test,vue}/**/*.{js,vue}\"",
"lint-fix": "eslint \"./{js,test,vue}/**/*.{js,vue}\" --fix",
"prettier": "prettier \"./*.{js,vue,json}\" \"./{js,test,vue}/**/*.{js,vue,json}\" --write",
"pretty": "npm run prettier && npm run lint-fix",
"test": "mocha --recursive",
"upgrade": "npx sort-package-json && ncu -u"
},
"dependencies": {
"hive-js-util": "^0.3.1",
"jquery": "^3.5.1",
"jsdom": "^16.4.0",
"vue": "^2.6.12"
},
"devDependencies": {
"babel-preset-env": "^1.7.0",
"eslint": "^7.16.0",
"eslint-config-hive": "^0.5.3",
"mocha": "^8.2.1",
"npm-check-updates": "^10.2.5",
"prettier": "^2.2.1",
"prettier-config-hive": "^0.1.7",
"sort-package-json": "^1.48.0"
}
}