-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.63 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
{
"name": "hafgufa",
"version": "0.17.0",
"description": "A javascript ES6+ Frameworkless UI library.",
"keywords": [
"UI",
"UX"
],
"license": "MIT",
"author": {
"name": "Darren Paul Wright",
"email": "[email protected]",
"url": "https://www.darrenpaulwright.com"
},
"homepage": "https://github.com/DarrenPaulWright/hafgufa#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/DarrenPaulWright/hafgufa.git"
},
"bugs": {
"url": "https://github.com/DarrenPaulWright/hafgufa/issues"
},
"main": "index.js",
"files": [
"src",
"tests/TestUtil.js",
"tests/**/*Tests.js",
"tests/extendsTestRegister.js",
"tests/ExtendsTestRunner.js",
"localization"
],
"sideEffects": [
"*.less"
],
"browserslist": [
"defaults"
],
"engines": {
"node": "9.5.0"
},
"scripts": {
"test": "karma start --single-run",
"test-watch": "karma start",
"bench": "karma start karma.bench.conf.js",
"start": "webpack-dev-server --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"preversion": "npm test && npm run docs && git add --all && git diff HEAD --quiet || git commit -m \"Updating docs\"",
"postversion": "npm publish",
"postpublish": "git push --follow-tags",
"pre-clean": "rm -rf node_modules && del /f package-lock.json",
"clean": "npm run pre-clean && npm install && npm audit fix",
"update": "ncu -u && git diff --quiet || npm install && npm audit fix",
"update-clean": "npm run pre-clean && npm run update",
"update-commit": "npm run update && npm test && git add --all && git diff HEAD --quiet || git commit -m \"Updating dependencies\"",
"update-patch": "npm run update && npm test && git add --all && git diff HEAD --quiet || git commit -m \"Updating dependencies\" && npm version patch",
"docs": ""
},
"dependencies": {
"async-agent": "^0.5.5",
"bowser": "^2.10.0",
"d3": "^5.16.0",
"date-fns": "^2.16.1",
"display-value": "^1.7.4",
"get-browser-language": "^1.0.0",
"hammerjs": "^2.0.8",
"hord": "^0.7.6",
"keycodes": "^1.0.0",
"less": "^3.12.2",
"object-agent": "^1.4.15",
"pathinator": "^0.3.3",
"shortid": "^2.2.15",
"simulant": "^0.2.2",
"type-enforcer": "^1.2.1",
"type-enforcer-ui": "^1.1.1"
},
"devDependencies": {
"@babel/polyfill": "^7.11.5",
"autoprefixer": "^9.8.6",
"babel-polyfill": "^6.26.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.1.0",
"html-webpack-plugin": "^4.4.1",
"karma-webpack-bundle": "^0.5.3",
"less-themes-webpack-plugin": "^1.4.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.4"
}
}