-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
55 lines (55 loc) · 1.63 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
52
53
54
55
{
"name": "check-build",
"version": "2.8.2",
"description": "Check that your NodeJS project follow conventions, is well written, up to date and secure.",
"bin": {
"check-build": "bin/check-build"
},
"scripts": {
"changelog-init": "conventional-changelog -i CHANGELOG.md -s -r 0",
"changelog": "conventional-changelog -i CHANGELOG.md -s",
"changelog-git": "npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master",
"publish-please": "publish-please",
"prepublish": "publish-please guard"
},
"main": "./src",
"repository": {
"type": "git",
"url": "https://github.com/FGRibreau/check-build.git"
},
"author": "Francois-Guillaume Ribreau <[email protected]> (http://fgribreau.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/FGRibreau/check-build/issues"
},
"homepage": "https://github.com/FGRibreau/check-build",
"dependencies": {
"async": "1.x.x",
"bluebird": "^2.3.11",
"buddy.js": "0.x.x",
"david": "^6.1.2",
"debug": "^2.2.0",
"eslint": "^1.1.0",
"eslint-plugin-react": "^3.2.3",
"fixmyjs": "^1.0.2",
"grunt": "^0.4.5",
"jscs": "3.x.x",
"jshint": "^2.5.6",
"jshint-stylish": "2.0.1",
"jsinspect": "0.x.x",
"json5": "^0.4.0",
"jsxhint": "^0.15.1",
"lodash": "^3.0.1",
"node-filepaths": "0.x.x",
"nsp-jcare": "2.0.2",
"plato": "^1.5.0",
"requestretry": "^1.2.2",
"shelljs": "0.x.x",
"snyk-resolve": "^1.0.0",
"strip-json-comments": "^1.0.2"
},
"devDependencies": {
"conventional-changelog": "^1.1.0",
"publish-please": "^2.1.1"
}
}