-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
101 lines (101 loc) · 3.03 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "tram-one",
"version": "13.2.1",
"description": "🚋 Modern View Framework for Vanilla Javascript",
"main": "dist/tram-one.cjs",
"commonjs": "dist/tram-one.cjs",
"umd": "dist/tram-one.js",
"module": "dist/tram-one.mjs",
"types": "dist/tram-one.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/tram-one.mjs",
"require": "./dist/tram-one.cjs"
}
},
"files": [
"dist/*",
"docs/runkit_example.js"
],
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore",
"build": "npm run build:cjs && npm run build:umd && npm run build:mjs",
"postbuild": "npm run build:badges",
"build:cjs": "rollup -c configs/rollup.config.cjs.js",
"build:umd": "rollup -c configs/rollup.config.umd.js",
"build:mjs": "rollup -c configs/rollup.config.mjs",
"build:badges": "node dev-scripts/build-size-badges.cjs",
"watch:lint": "watch \"npm run lint\" src",
"watch:build": "watch \"npm run build\" src",
"clean": "git clean -Xdf",
"test": "jest integration-tests --watch",
"test:ci": "jest integration-tests --coverage",
"test:app": "parcel integration-tests/test-app/index.html --dist-dir .parcel-dist",
"test:performance": "jest performance-tests --watch --update-snapshot",
"test:performance:ci": "jest performance-tests --update-snapshot",
"test:performance:app": "parcel performance-tests/test-app/index.html",
"start": "npm ci && npm run build",
"restart": "npm run clean && npm start"
},
"runkitExampleFilename": "docs/runkit_example.js",
"author": {
"name": "Jesse Jurman",
"email": "[email protected]",
"url": "https://jrjurman.com"
},
"keywords": [
"frontend",
"framework",
"client",
"browser",
"web-app",
"tram-one",
"observables",
"hooks",
"vanilla",
"tram",
"one"
],
"repository": "https://github.com/Tram-One/tram-one",
"license": "MIT",
"dependencies": {
"@nx-js/observer-util": "^4.2.2",
"@tram-one/hyperx": "^4.0.3",
"@tram-one/nanohtml": "^5.0.0",
"@tram-one/rbel": "^2.0.1",
"url-listener": "^2.0.0",
"use-url-params": "^4.0.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.3",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/user-event": "^14.2.1",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-tram-one": "^4.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"parcel": "^2.6.1",
"prettier": "^2.7.1",
"rollup": "^2.75.6",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sizes": "^1.0.4",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^28.0.5",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"watch": "^1.0.2"
}
}