forked from mazipan/hello-open-source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.12 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
{
"name": "hello-open-source",
"version": "1.0.0",
"description": "Repository for beginners that learn to contribute to open source project",
"main": "mazipan.js",
"scripts": {
"lint": "eslint \"**/*.js\" --ignore-pattern node_modules/",
"fixlint": "eslint \"**/*.js\" --ignore-pattern node_modules/ --fix",
"test": "echo \"not implement yet\"",
"purge": "node ./purge"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mazipan/hello-open-source.git"
},
"keywords": [
"open-source",
"beginners",
"contribute"
],
"author": "mazipan",
"license": "MIT",
"bugs": {
"url": "https://github.com/mazipan/hello-open-source/issues"
},
"homepage": "https://github.com/mazipan/hello-open-source#readme",
"devDependencies": {
"eslint": "^5.6.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.1.1",
"standard": "^12.0.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}