-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.15 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.15 KB
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
{
"name": "semantic-forms",
"description": "🎯 A pattern library of forms based on semantic HTML enhanced with a modern UX.",
"author": "Roosevelt Framework Team <rooseveltframework@gmail.com>",
"contributors": [
{
"name": "Contributors",
"url": "https://github.com/rooseveltframework/semantic-forms/graphs/contributors"
}
],
"version": "5.3.5",
"files": [
"dist",
"semanticForms.scss",
"docs/statics",
"*.md"
],
"exports": {
".": {
"import": "./dist/semantic-forms.mjs",
"require": "./dist/semantic-forms.cjs"
},
"./min": {
"default": "./dist/semantic-forms.min.mjs"
}
},
"homepage": "https://rooseveltframework.org/docs/semantic-forms/latest",
"license": "CC-BY-4.0",
"main": "semanticForms.js",
"readmeFilename": "README.md",
"devDependencies": {
"@jsdevtools/coverage-istanbul-loader": "3.0.5",
"@playwright/test": "1.58.2",
"eslint": "10.0.3",
"eslint-plugin-html": "8.1.4",
"express": "5.2.1",
"nodemon": "3.1.14",
"nyc": "18.0.0",
"sass": "1.98.0",
"http-server": "14.1.1",
"standard": "17.1.2",
"webpack-cli": "7.0.1"
},
"scripts": {
"build": "webpack && sass semanticForms.scss dist/semantic-forms.css",
"watch": "webpack && sass --watch semanticForms.scss dist/semantic-forms.css",
"d": "nodemon dev-server.js --ext js,scss",
"dev": "nodemon dev-server.js --ext js,scss",
"development": "nodemon dev-server.js --ext js,scss",
"lint": "standard && standard --plugin html docs/statics/pages/*.html",
"lint-fix": "standard --fix && standard --plugin html docs/statics/pages/*.html --fix",
"test": "npm run build && playwright test",
"coverage": "webpack --env coverage && sass semanticForms.scss dist/semantic-forms.css && nyc playwright test && npm run build"
},
"standard": {
"ignore": [
"dist/",
"docs/public"
]
},
"repository": {
"type": "git",
"url": "git://github.com/rooseveltframework/semantic-forms.git"
},
"keywords": [
"semantic",
"forms",
"float",
"label"
],
"funding": "https://www.paypal.com/donate/?hosted_button_id=2L2X8GRXZCGJ6"
}