-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.6 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
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "sfms",
"version": "0.3.0",
"description": "a tool for Salesforce SFDX projects to evaluate manual step creation",
"keywords": [
"sfdx",
"salesforce",
"apex"
],
"repository": {
"type": "git",
"url": "https://github.com/riquier/sfms.git"
},
"license": "MIT",
"author": "Marcus Riquier <marcus.riquier@gmail.com>",
"files": [
"lib/**/*"
],
"types": "lib/index.d.ts",
"bin": "lib/index.js",
"scripts": {
"audit": "yarn run audit:liscence && yarn run audit:secruity",
"audit:liscence": "yarn license-checker --production --summary --failOn \"Network Protective; Strongly Protective; Weakly Protective\"",
"audit:secruity": "audit-ci --moderate",
"build": "tsc",
"clean": "rimraf lib coverage",
"format": "prettier --write \"**/*.{ts,json,md,yml,js}\"",
"lint": "yarn lint:md && yarn lint:js",
"lint:fix": "yarn lint:md --fix && yarn lint:js --fix",
"lint:js": "eslint . --ext .js,.ts",
"lint:md": "markdownlint *.md **/*.md --ignore node_modules",
"prepare": "yarn build",
"prepublishOnly": "yarn lint && yarn test",
"prepublish": "yarn build",
"test": "yarn jest",
"preversion": "yarn lint"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint:fix && pretty-quick --staged"
}
},
"dependencies": {
"@types/jest": "^25.1.3",
"@types/node": "^13.1.2",
"@types/yargs": "^15.0.4",
"yargs": "^15.0.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.4.1",
"@babel/preset-typescript": "^7.3.2",
"@babel/runtime": "^7.7.6",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"audit-ci": "^2.4.2",
"babel-jest": "25.1.0",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"jest": "25.1.0",
"license-checker": "^25.0.1",
"markdownlint": "^0.19.0",
"markdownlint-cli": "^0.22.0",
"prettier": "^1.19.1",
"prettier-eslint": "^9.0.1",
"prettier-plugin-packagejson": "^2.0.6",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.0",
"ts-jest": "25.2.1",
"typescript": "^3.3.3"
},
"engines": {
"node": ">=10",
"yarn": "^1.0.0"
}
}