-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.11 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
{
"name": "@amazingandyyy/node-server",
"description": "A simple node server module.",
"version": "0.0.11",
"author": {
"name": "Andy Chen",
"email": "amazingandyyy@gmail.com",
"url": "https://amazingandyyy.com/"
},
"scripts": {
"test": "standard --fix",
"precommit": "npm run test",
"prepublish:local": "git reset && npm version patch --force && git add .",
"publish:public": "npm run prepublish:local && npm publish --access=public"
},
"lint-staged": {
"*.js": [
"npm run test",
"git add"
]
},
"markdeck": {
"url": "https://github.com/amazingandyyy/node-server/tree/master/docs"
},
"bugs": {
"url": "https://github.com/amazingandyyy/node-server/issues"
},
"homepage": "https://github.com/amazingandyyy/node-server",
"keywords": [
"open source"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/amazingandyyy/node-server.git"
},
"devDependencies": {
"husky": "^3.0.3",
"lint-staged": "^9.2.1",
"standard": "*"
},
"files": [
"*.js"
],
"dependencies": {}
}