-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 889 Bytes
/
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
{
"name": "jam3-lesson-module-creation",
"version": "1.0.6",
"description": "introduction to creating a new npm module",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Matt DesLauriers",
"email": "[email protected]",
"url": "https://github.com/mattdesl"
},
"dependencies": {},
"devDependencies": {},
"scripts": {
"test": "node test.js"
},
"keywords": [
"module",
"npm",
"help",
"how",
"to",
"tutorial",
"guide",
"lesson",
"guides",
"tutorials",
"create",
"a",
"new",
"modules",
"modular",
"publish"
],
"repository": {
"type": "git",
"url": "git://github.com/Jam3/jam3-lesson-module-creation.git"
},
"homepage": "https://github.com/Jam3/jam3-lesson-module-creation",
"bugs": {
"url": "https://github.com/Jam3/jam3-lesson-module-creation/issues"
}
}