forked from dollarshaveclub/es-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.27 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "es-check",
"version": "5.1.1",
"description": "Checks the EcamScript version of .js glob against a specified version of EcamScript with a shell command",
"main": "index.js",
"files": [
"index.js"
],
"bin": {
"es-check": "index.js"
},
"scripts": {
"chore:delete-branch": "if git show-ref --quiet refs/heads/chore-changelog; then git branch -D chore-changelog; fi",
"chore:branch": "git checkout -b chore-changelog",
"chore:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"chore:pr": "git add . && git commit -m '[chore] updates changelog' --no-verify && git push origin chore-changelog -f",
"chore": "npm run chore:delete-branch && npm run chore:branch && npm run chore:changelog && npm run chore:pr",
"lint": "eslint index.js --fix",
"lint:ci": "eslint index.js",
"prepush": "npm run lint && npm test",
"postpublish": "git tag $npm_package_version && git push origin --tags && npm run chore",
"report:coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"test": "nyc mocha test.js --timeout 10s --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dollarshaveclub/es-check.git"
},
"author": "Jeff Wainwright <yowainwright@gmail.com> (https://jeffry.in), Brian Gonzalez <me@briangonzalez.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dollarshaveclub/es-check/issues"
},
"homepage": "https://github.com/dollarshaveclub/es-check#readme",
"devDependencies": {
"assert": "^1.4.1",
"codecov": "^3.0.0",
"conventional-changelog-cli": "^2.0.11",
"eslint": "^5.0.0",
"eslint-plugin-dollarshaveclub": "^1.0.2",
"husky": "^1.0.0",
"mocha": "^6.0.0",
"nyc": "^14.1.1"
},
"dependencies": {
"acorn": "^6.4.1",
"caporal": "1.3.0",
"glob": "^7.1.2"
},
"engines": {
"node": ">= 4"
},
"keywords": [
"check for es6",
"check for modules",
"es",
"es check",
"es matching",
"es version",
"ecmascript",
"ecmascript check",
"ecmascript matching",
"ecmascript version",
"js",
"js version",
"js version check",
"js version matching",
"test js version",
"test ecmascript version"
],
"resolutions": {
"eslint-scope": "3.7.1"
}
}