forked from OpenLightingProject/open-fixture-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.34 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
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "open-fixture-library",
"version": "1.0.0",
"description": "An open source library for lighting technology's fixture definition files",
"author": "Florian Edelmann <[email protected]>",
"contributors": [
"Felix Edelmann <[email protected]>"
],
"engines": {
"node": "12.13.0"
},
"main": "main.js",
"scripts": {
"dev": "node --max-old-space-size=4096 main.js --dev",
"postinstall": "make all",
"start": "node --max-old-space-size=4096 main.js",
"lint": "npm run lint:eslint && npm run lint:stylelint",
"lint:eslint": "eslint .",
"lint:eslint-errors-only": "eslint --quiet --format codeframe .",
"lint:stylelint": "stylelint **/*.scss **/*.vue",
"test": "npm run lint && npm run test:fixtures-valid",
"test:dmx-value-scaling": "node tests/dmx-value-scaling.js",
"test:fixtures-valid": "node tests/fixtures-valid.js -a",
"test:http-status": "NODE_ENV=production node --tls-min-v1.0 tests/http-status.js",
"test:make-targets-updated": "node tests/make-targets-updated.js"
},
"husky": {
"hooks": {
"post-checkout": "make only-gitignored-no-nuxt",
"post-merge": "make only-gitignored-no-nuxt",
"pre-commit": "if [ \"$(git rev-parse --abbrev-ref HEAD)\" = \"master\" ]; then echo \"You can't commit directly to master branch\"; exit 1; fi"
}
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.6",
"@heise/embetty-server": "^2.0.3",
"@nuxtjs/axios": "^5.12.2",
"@octokit/rest": "~18.0.6",
"a11y-dialog": "^5.4.1",
"ajv": "^6.12.6",
"chalk": "^4.1.0",
"color-hash": "^1.0.3",
"color-name-list": "^7.10.0",
"compression": "^1.7.4",
"cookie-universal-nuxt": "^2.1.4",
"cors": "^2.8.5",
"details-polyfill": "^1.1.0",
"embetty-vue": "^1.3.2",
"esm": "3.2.25",
"express": "^4.17.1",
"helmet": "^4.1.1",
"jszip": "^3.5.0",
"node-env-file": "^0.1.8",
"nuxt": "~2.14.6",
"openapi-backend": "^3.6.3",
"sanitize-filename": "^1.6.3",
"sass": "^1.27.0",
"sass-loader": "^10.0.3",
"scroll-into-view": "^1.15.0",
"sitemap": "^6.3.2",
"svg-inline-loader": "^0.8.2",
"uuid": "^8.3.1",
"vue-form": "^4.10.3",
"vue2-smooth-scroll": "^1.5.0",
"vuedraggable": "^2.24.1",
"xml2js": "^0.4.23",
"xmlbuilder": "^15.1.1"
},
"devDependencies": {
"broken-link-checker": "^0.7.8",
"default-user-agent": "^1.0.0",
"dir-compare": "^2.3.0",
"disparity": "^3.1.0",
"eslint": "~7.11.0",
"eslint-plugin-array-func": "~3.1.7",
"eslint-plugin-jsdoc": "~30.6.4",
"eslint-plugin-json": "~2.1.2",
"eslint-plugin-markdown": "~1.0.2",
"eslint-plugin-promise": "~4.2.1",
"eslint-plugin-security": "~1.4.0",
"eslint-plugin-vue": "~7.0.1",
"husky": "^4.3.0",
"jsdoc-to-markdown": "^6.0.1",
"libxmljs": "^0.19.7",
"minimist": "^1.2.5",
"mkdirp": "^1.0.4",
"node-delete": "^0.1.2",
"stylelint": "~13.7.2",
"stylelint-config-recommended-scss": "~4.2.0",
"stylelint-scss": "~3.18.0",
"widdershins": "^4.0.1"
},
"homepage": "https://open-fixture-library.org/",
"repository": {
"type": "git",
"url": "https://github.com/OpenLightingProject/open-fixture-library"
},
"keywords": [
"dmx",
"dmx512",
"ecue",
"fixture",
"fixtures",
"lighting",
"qlc"
],
"license": "MIT"
}