-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.2 KB
/
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
44
45
46
47
48
49
50
51
{
"name": "scratchese-origin",
"description": "Standard open source project starter kit.",
"version": "0.0.2",
"scripts": {
"test": "standard --fix",
"dev": "node-run",
"prepublish:local": "git reset && npm version patch --force && git add .",
"publish:public": "npm publish --access=public",
"precommit": "npm run test"
},
"main": "index.js",
"bin": {
"node-run": "index.js"
},
"files": [
"index.js"
],
"keywords": [
"open source"
],
"author": {
"name": "Andy Chen",
"email": "[email protected]",
"url": "https://amazingandyyy.com/"
},
"lint-staged": {
"*.js": [
"npm run test",
"git add"
]
},
"markdeck": {
"url": "https://github.com/amazingandyyy/scratchese-origin/tree/master/docs"
},
"bugs": {
"url": "https://github.com/amazingandyyy/scratchese-origin/issues"
},
"homepage": "https://github.com/amazingandyyy/scratchese-origin",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/amazingandyyy/scratchese-origin.git"
},
"devDependencies": {
"@amazingandyyy/git-hooks": "^0.1.0",
"lint-staged": "^9.2.1",
"standard": "*"
},
"dependencies": {}
}