testnabil 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/app.js +1 -0
  2. package/hello.js +1 -0
  3. package/index.html +12 -0
  4. package/package.json +28 -0
package/app.js ADDED
@@ -0,0 +1 @@
1
+ console.log("I'am alive");
package/hello.js ADDED
@@ -0,0 +1 @@
1
+ console.log("Hello, npm!");
package/index.html ADDED
@@ -0,0 +1,12 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Document</title>
7
+ <script src="app.js"></script>
8
+ </head>
9
+ <body>
10
+
11
+ </body>
12
+ </html>
package/package.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "testnabil",
3
+ "version": "1.0.0",
4
+ "description": "utilisation npm",
5
+ "keywords": [
6
+ "test"
7
+ ],
8
+ "license": "ISC",
9
+ "author": "Nabil",
10
+ "type": "commonjs",
11
+ "main": "index.js",
12
+ "scripts": {
13
+ "start": "node app.js",
14
+ "test": "echo \"Test en cours...\"",
15
+
16
+ "hello": "node hello.js"
17
+
18
+ },
19
+ "dependencies": {
20
+ "express": "^5.2.1"
21
+ },
22
+ "devDependencies": {
23
+ "jest": "^30.3.0"
24
+ }
25
+
26
+ }
27
+
28
+