-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
146 lines (146 loc) · 5.04 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"author": {
"email": "[email protected]",
"name": "Josh Goldberg"
},
"browser": "./src/index.js",
"bugs": {
"url": "https://github.com/FullScreenShenanigans/ChooseYourFramework/issues"
},
"dependencies": {
"actorhittr": "^0.8.15",
"areaspawnr": "^0.8.15",
"classcyclr": "^0.8.15",
"devicelayr": "^0.8.15",
"eightbittr": "^0.8.15",
"fpsanalyzr": "^0.8.15",
"frametickr": "^0.8.15",
"groupholdr": "^0.8.15",
"inputwritr": "^0.8.15",
"mapscreatr": "^0.8.15",
"mapscreenr": "^0.8.15",
"menugraphr": "^0.8.15",
"numbermakr": "^0.8.15",
"objectmakr": "^0.8.15",
"pixeldrawr": "^0.8.15",
"pixelrendr": "^0.8.15",
"quadskeepr": "^0.8.15",
"stringfilr": "^0.8.15",
"timehandlr": "^0.8.15",
"userwrappr": "^0.8.15"
},
"description": "Choosing a modern JavaScript UI framework, Pokemon-style.",
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@sinonjs/fake-timers": "^9.1.2",
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/sinon": "^10.0.13",
"@types/sinon-chai": "^3.2.8",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"babel-loader": "8.2.5",
"chai": "^4.3.6",
"cssmin": "^0.4.3",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"glob": "^8.0.3",
"html-minifier": "^4.0.0",
"husky": "^8.0.1",
"lerna": "^5.4.2",
"lint-staged": "^13.0.3",
"mocha": "^10.0.0",
"mocha-headless-chrome": "^4.0.0",
"npm-check-updates": "^16.0.5",
"preact": "^10.10.2",
"prettier": "^2.7.1",
"requirejs": "^2.3.6",
"shenanigans-manager": "^0.8.15",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"license": "MIT",
"lint-staged": {
"**/*.{css,js,json,md,ts,tsx}": [
"prettier --ignore-path .prettierignore --write"
]
},
"name": "chooseyourframework",
"repository": {
"type": "git",
"url": "ssh://[email protected]:FullScreenShenanigans/ChooseYourFramework.git"
},
"scripts": {
"build:vercel": "yarn hydrate; yarn compile; yarn dist; yarn build:vercel:fix",
"build:vercel:fix": "node ./fix-index-for-vercel.js; yarn build:vercel:requirejs",
"build:vercel:requirejs": "npx terser dist/requirejs/require.js --compress > dist/requirejs/require.min.js",
"clean": "rm -rf lib *.tsbuildinfo",
"compile": "tsc",
"dist": "webpack",
"format": "prettier --ignore-path .prettierignore --check \"./**/*.{css,js,json,md,ts,tsx}\"",
"format:write": "yarn format --write",
"hydrate": "yarn shenanigans-manager hydrate",
"link": "yarn link",
"lint": "eslint --ignore-path .eslintignore \"./src/**/*.{ts,tsx}\"",
"prepare": "husky install",
"publish:ci": "yarn shenanigans-manager publish-if-updated",
"test": "yarn run test:setup && yarn run test:run",
"test:run": "yarn mocha-headless-chrome --file test/index.html --polling 1000",
"test:setup": "yarn shenanigans-manager generate-tests"
},
"shenanigans": {
"dist": true,
"external": true,
"game": true,
"loading": {
"externals": [
{
"js": {
"dev": "preact/dist/preact.umd",
"prod": "preact/dist/preact.umd"
},
"name": "preact"
},
{
"js": {
"dev": "preact/hooks/dist/hooks.umd",
"prod": "preact/hooks/dist/hooks.umd"
},
"name": "preact/hooks"
},
{
"js": {
"dev": "preact/jsx-runtime/dist/jsxRuntime.umd",
"prod": "preact/jsx-runtime/dist/jsxRuntime.umd"
},
"name": "preact/jsx-runtime"
},
{
"js": {
"dev": "userwrappr/dist/UserWrappr-Delayed",
"prod": "userwrappr/dist/UserWrappr-Delayed"
},
"name": "UserWrappr-Delayed",
"shenanigansPackage": true
}
]
},
"name": "ChooseYourFramework",
"web": true
},
"types": "./src/index.d.ts",
"version": "0.8.15"
}