-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "es5-validator",
"version": "1.3.1",
"description": "Validate JS source code against ES5 to avoid breaking you App by shipping ES6+ code to production silently",
"main": "index.js",
"files": [
"helper",
"index.js"
],
"scripts": {
"preversion": "npm test",
"postversion": "npm publish && git push && git push --tags",
"pub:major": "npm version major",
"pub:minor": "npm version minor",
"pub:patch": "npm version patch",
"test": "npm run test:es5 && npm run test:es6 && npm run test:inline",
"test:es5": "node index ./test/es5.js",
"test:inline": "SILENT=true node index --inline \"function func(foo=''){};\nconst bar=1;\"",
"test:es6": "SILENT=true node index ./test/es6.js"
},
"bin": {
"es5-validator": "./index.js"
},
"keywords": [
"validate ES5",
"validate against ECMAScript 5",
"es5-validator"
],
"repository": {
"type": "git",
"url": "https://github.com/legend80s/es5-validator.git"
},
"author": "legend80s",
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.10.4",
"acorn": "^7.3.1",
"chalk": "^4.1.0",
"is-minified-performant": "^1.0.2",
"js-beautify": "^1.11.0"
},
"devDependencies": {
"git-commit-msg-linter": "^2.6.0"
}
}