-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.01 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.01 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
{
"name": "@erickxavier/no-js",
"version": "1.11.0",
"description": "The HTML-first reactive framework — build dynamic web apps with just HTML attributes, no JavaScript required",
"main": "dist/cjs/no.js",
"module": "dist/esm/no.js",
"browser": "dist/iife/no.js",
"unpkg": "dist/iife/no.js",
"jsdelivr": "dist/iife/no.js",
"exports": {
".": {
"import": "./dist/esm/no.js",
"require": "./dist/cjs/no.js",
"default": "./dist/cjs/no.js"
}
},
"files": [
"dist/",
"src/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "node build.js",
"start": "node docs/dev-server.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:verbose": "jest --verbose",
"test:e2e": "npx playwright test --config e2e/playwright.config.ts",
"test:e2e:ui": "npx playwright test --config e2e/playwright.config.ts --ui",
"test:e2e:headed": "npx playwright test --config e2e/playwright.config.ts --headed",
"test:e2e:report": "npx playwright show-report e2e/playwright-report",
"test:all": "npm test && npm run test:e2e",
"bench": "jest --testMatch='**/__benchmarks__/**/*.test.js' --testPathIgnorePatterns='[]'",
"prepublishOnly": "npm run build"
},
"keywords": [
"javascript",
"declarative",
"reactive",
"nojs",
"html-first",
"no-build",
"framework",
"frontend",
"zero-js",
"data-binding"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ErickXavier/no-js.git"
},
"homepage": "https://github.com/ErickXavier/no-js#readme",
"bugs": {
"url": "https://github.com/ErickXavier/no-js/issues"
},
"author": "exs.dev",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@playwright/test": "^1.58.2",
"@testing-library/jest-dom": "^6.9.1",
"babel-jest": "^30.2.0",
"esbuild": "^0.27.3",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jsdom": "^28.1.0"
}
}