-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.54 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
{
"name": "yupee",
"version": "1.2.0",
"description": "Lightweight application framework for Javascript",
"main": "./dist/yupee.min.js",
"module": "./dist/yupee.min.msj",
"files": [
"dist"
],
"author": {
"name": "Alexandre Brillant",
"url": "https://www.alexandrebrillant.com"
},
"browser": "./dist/yupee.min.js",
"homepage": "https://github.com/AlexandreBrillant/yupee",
"keywords": [
"yupee",
"application framework",
"framework javascript léger",
"framework applicatif",
"html component",
"modular application",
"modular web",
"javascript component",
"alternative to react",
"alternative à react",
"javascript"
],
"repository": {
"type": "git",
"url": "https://github.com/AlexandreBrillant/yupee.git"
},
"license": "MIT",
"devDependencies": {
"http-server": "^14.1.1",
"terser": "^5.44.1"
},
"scripts": {
"build:clean": "rm -rf dist && mkdir dist",
"build:minify": "terser dist/yupee.js -o dist/yupee.min.js && terser dist/yupee.mjs -o dist/yupee.min.mjs",
"build:esm": "node src/preprocessor.js -i src/modules/main.js -a 'export { $$ }' -o dist/yupee.mjs",
"prebuild": "npm run build:clean",
"build": "npm run build:includeAll && npm run build:esm && npm run build:minify",
"build:includeAll": "node src/preprocessor.js -i src/modules/main.js -o dist/yupee.js",
"postbuild": "node --check dist/yupee.js",
"test": ". test/checkall.sh",
"test:web": "cp dist/yupee.mjs test/basic/lib && cd test && npx http-server -c-1"
}
}