This repository has been archived by the owner on Mar 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.48 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
{
"name": "@mvneerven/xo-js",
"version": "2.0.10",
"description": "XO - Pure JS Progressive Web Apps & Declarative Forms - No dependencies",
"repository": {
"type": "git",
"url": "https://github.com/mvneerven/xo"
},
"author": {
"name": "Marc van Neerven",
"email": "[email protected]",
"url": "https://neerventure.com/"
},
"keywords": [
"spa",
"es6",
"json-schema",
"vanilla-javascript",
"javascript-library",
"json-form",
"no-dependencies",
"inline-validation",
"pwa-apps",
"declarative-programming",
"form-schema"
],
"main": "dist/xo.min.js",
"types": "dist/js/xo.d.ts",
"homepage": "https://www.xo-js.dev",
"scripts": {
"compile": "esbuild js/xo.js --bundle --minify --platform=node --target=node12 --format=esm --outfile=dist/xo.min.js&&tsc",
"doc": "jsdoc -c jsdoc.config.js -r",
"test": "esbuild js/xo.js --bundle --format=cjs --outfile=dist/xo.cjs.js&&cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"dev": "node esbuild-dev.js",
"build": "node esbuild-build.js&&npm run test&&npm run doc&&tsc",
"refreshVSToken": "vsts-npm-auth -config .npmrc -F"
},
"license": "MIT",
"devDependencies": {
"@es-pack/esbuild-sass-plugin": "^2.0.0",
"cross-env": "^7.0.3",
"esbuild": "^0.13.15",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"jsdoc": "^3.6.7",
"kis-jsdoc-plugin": "^1.4.9",
"regenerator-runtime": "^0.13.7",
"typescript": "^4.2.4"
}
}