-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.31 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
{
"name": "@mindscreen/formvalidation",
"version": "0.1.5",
"license": "MIT",
"description": "Provides means for an accessible form validation",
"repository": "https://github.com/mindscreen/accessible-formvalidation",
"homepage": "https://github.com/mindscreen/accessible-formvalidation#readme",
"main": "dist/main.js",
"types": "src/main.ts",
"scripts": {
"compile": "tsc",
"start": "tsc --watch",
"sass": "sass scss/forms.scss:dist/base.css",
"examples:fromOptions": "esbuild examples/fromOptions.ts --bundle --outfile=examples/fromOptions.js",
"examples:customValidator": "esbuild examples/customValidator.ts --bundle --outfile=examples/customValidator.js",
"examples:nativeValidation": "esbuild examples/nativeValidation.ts --bundle --outfile=examples/nativeValidation.js",
"examples": "npm run sass && npm-run-all examples:*",
"build": "npm run sass && npm run compile",
"docs": "typedoc src/**/*.ts"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"esbuild": "^0.23.0",
"eslint": "^8.57.0",
"npm-run-all": "^4.1.5",
"sass": "^1.77.7",
"typedoc": "^0.26.4",
"typescript": "^5.5.3"
}
}