forked from workshopper/how-to-npm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 888 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 888 Bytes
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
{
"name": "how-to-npm",
"version": "1.2.0",
"description": "A module to teach you how to module.",
"bin": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/npm/how-to-npm"
},
"scripts": {
"test": "standard"
},
"keywords": [
"workshop",
"adventure",
"tutorial",
"tutor",
"npm"
],
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/npm/how-to-npm/issues"
},
"bundleDependencies": [
"adventure",
"concat-stream",
"mkdirp",
"rimraf",
"semver",
"which"
],
"dependencies": {
"adventure": "^2.10.0",
"concat-stream": "^1.4.7",
"mkdirp": "^0.5.0",
"rimraf": "^2.2.8",
"semver": "^4.2.0",
"which": "^1.0.8"
},
"preferGlobal": true,
"devDependencies": {
"standard": "^7.1.2"
}
}