-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
60 lines (60 loc) · 1.88 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
{
"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.0.5",
"files": [
"dist",
"semanticForms.scss"
],
"homepage": "https://github.com/rooseveltframework/semantic-forms",
"license": "CC-BY-4.0",
"main": "semanticForms.js",
"readmeFilename": "README.md",
"devDependencies": {
"@jsdevtools/coverage-istanbul-loader": "3.0.5",
"@playwright/test": "1.51.1",
"eslint": "9.23.0",
"eslint-plugin-html": "8.1.2",
"express": "4.21.2",
"nodemon": "3.1.9",
"nyc": "17.1.0",
"sass": "1.86.0",
"serve": "14.2.4",
"standard": "17.1.2",
"webpack-cli": "6.0.1"
},
"scripts": {
"build": "webpack && sass semanticForms.scss dist/semantic-forms.css",
"watch": "webpack && sass --watch semanticForms.scss dist/semantic-forms.css",
"d": "nodemon --exec \"npm run build && serve\"",
"dev": "nodemon --exec \"npm run build && serve\"",
"development": "nodemon --exec \"npm run build && serve\"",
"lint": "standard && standard --plugin html test/*.html",
"lint-fix": "standard --fix && standard --plugin html test/*.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/"
]
},
"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"
}