-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.23 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
{
"name": "sf-minos",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"lint": "tslint -p tsconfig.json",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jonathanwiesel/sf-minos.git"
},
"keywords": [
"salesforce",
"sf",
"unused",
"detector",
"workflow",
"email alert",
"trigger",
"process",
"validation rule",
"approval process",
"flow",
"email template"
],
"author": "Jonathan Wiesel",
"license": "MIT",
"bugs": {
"url": "https://github.com/jonathanwiesel/sf-minos/issues"
},
"homepage": "https://github.com/jonathanwiesel/sf-minos#readme",
"devDependencies": {
"prettier": "^2.0.5",
"ts-lint": "^4.5.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.2"
},
"dependencies": {
"@types/jsforce": "^1.9.18",
"jsforce": "^1.9.3"
}
}