forked from KonnorRogers/mrujs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.13 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.13 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
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
102
103
104
{
"name": "mrujs",
"amdName": "mrujs",
"version": "1.0.3-rc1",
"description": "UJS for modern javascript.",
"source": "src/index.ts",
"main": "./dist/index.umd.js",
"module": "./dist/index.module.js",
"exports": {
".": {
"browser": "./dist/index.module.js",
"umd": "./dist/index.umd.js",
"import": "./dist/index.module.js",
"require": "./dist/index.umd.js"
},
"./plugins": {
"browser": "./plugins/dist/plugins.module.js",
"umd": "./plugins/dist/plugins.umd.js",
"import": "./plugins/dist/plugins.module.js",
"require": "./plugins/dist/plugins.js"
}
},
"types": "dist/src/index.d.ts",
"typings": "dist/src/index.d.ts",
"repository": "git@github.com:KonnorRogers/mrujs.git",
"homepage": "https://mrujs.netlify.app",
"author": "KonnorRogers <konnor5456@gmail.com>",
"license": "MIT",
"keywords": [
"ujs",
"rails"
],
"publishConfig": {
"access": "public"
},
"files": [
"src",
"dist",
"plugins",
"types.ts"
],
"sideEffects": [
"./src/index.ts",
"/src/polyfills/*"
],
"bugs": {
"url": "https://github.com/paramagicdev/mrujs/issues"
},
"scripts": {
"clean": "rm -rf dist plugins/dist",
"lint": "ts-standard plugins/ src/ test/js",
"fix": "ts-standard plugins/ src/ test/js --fix",
"test": "web-test-runner",
"test:ci": "pnpm lint && playwright install --with-deps && pnpm build && web-test-runner",
"test:watch": "web-test-runner --watch",
"start": "pnpm clean && web-dev-server",
"start:watch": "web-dev-server --watch",
"build": "pnpm clean && pnpm fix && rollup -c",
"build:watch": "pnpm clean && pnpm fix && rollup -wc",
"deploy": "pnpm build && standard-version --release-as",
"deploy:beta": "pnpm build && standard-version --prerelease beta",
"deploy:patch": "pnpm build && standard-version --release-as patch",
"deploy:minor": "pnpm build && standard-version --release-as minor",
"deploy:major": "pnpm build && standard-version --release-as major",
"push": "git push --follow-tags origin main && pnpm publish"
},
"dependencies": {
"morphdom": "^2.7.8"
},
"devDependencies": {
"@esm-bundle/chai": "4.3.4-fix.0",
"@open-wc/testing": "^4.0.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@types/sinon": "^21.0.0",
"@types/sinon-chai": "^4.0.0",
"@web/dev-server": "^0.4.6",
"@web/dev-server-esbuild": "^1.0.4",
"@web/test-runner": "^0.20.2",
"@web/test-runner-mocha": "^0.9.0",
"@web/test-runner-playwright": "^0.11.1",
"cable_ready": "^5.0.6",
"eslint": "^9.39.2",
"latest": "link:@open-wc/testing/latest",
"playwright": "^1.58.0",
"rollup": "^4.56.0",
"rollup-plugin-gzip": "^4.1.1",
"sinon": "^21.0.1",
"standard-version": "^9.5.0",
"ts-standard": "^12.0.2",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1",
"zlib": "^1.0.5"
},
"ts-standard": {
"ignore": [
"dist"
],
"project": "./tsconfig-lint.json"
}
}