-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.02 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
{
"name": "yupee",
"version": "1.1.0",
"description": "Lightweight application framework for Javascript",
"main": "./dist/yupee.min.js",
"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": {
"terser": "^5.44.1"
},
"scripts": {
"prebuild": "node src/preprocessor.js -i src/modules/main.js -o dist/yupee.js",
"build": "terser dist/yupee.js -o dist/yupee.min.js",
"postbuild": "node --check dist/yupee.js"
}
}