-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
98 lines (98 loc) · 2.32 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
{
"name": "@osjs/dialogs",
"version": "3.2.2",
"description": "OS.js Dialogs",
"main": "dist/main.js",
"module": "dist/main.js",
"style": "dist/main.css",
"files": [
"dist/main.js",
"dist/main.js.map",
"dist/main.css",
"dist/main.css.map",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"scripts": {
"test": "npm run eslint && npm run stylelint",
"eslint": "eslint index.js 'src/**/*.js'",
"build": "webpack",
"watch": "webpack --watch",
"stylelint": "stylelint index.scss 'src/**/*.scss'",
"prepublishOnly": "npm run test && rm ./dist/* && NODE_ENV=production npm run build",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/os-js/osjs-dialogs.git"
},
"keywords": [
"osjs"
],
"author": "Anders Evenrud <[email protected]>",
"license": "BSD-2-Clause",
"dependencies": {
"@osjs/gui": "^4.0.36",
"deepmerge": "^2.2.1",
"hyperapp": "^1.2.10",
"is-plain-object": "^2.0.4"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@osjs/dev-meta": "^2.1.0",
"husky": "^8.0.1"
},
"bugs": {
"url": "https://github.com/os-js/osjs-dialogs/issues"
},
"homepage": "https://github.com/os-js/osjs-dialogs#readme",
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"sourceType": "module"
},
"extends": "@osjs/eslint-config"
},
"stylelint": {
"extends": "@osjs/stylelint-config"
},
"esdoc": {
"source": "./src",
"destination": "./doc",
"plugins": [
{
"name": "esdoc-standard-plugin",
"option": {
"brand": {
"title": "OS.js Dialog API",
"description": "OS.js Dialog API Documentation",
"repository": "https://github.com/os-js/osjs-core",
"author": "Anders Evenrud <[email protected]>"
},
"lint": {
"enable": false
},
"coverage": {
"enable": false
},
"undocumentIdentifier": {
"enable": false
}
}
},
{
"name": "esdoc-publish-html-plugin"
}
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}