-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 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
{
"name": "sf-metadata",
"version": "0.0.1-alpha.2",
"description": "Library for reading, writing and processing (read, update and write) Salesforce metadata files",
"bugs": "https://github.com/gdman/sf-metadata/issues",
"main": "lib/index.js",
"scripts": {
"build": "rm -rf ./lib && tsc",
"test": "jest --coverage",
"prepack": "npm run build"
},
"author": "Andrew Goodman",
"license": "MIT",
"dependencies": {
"minimatch": "^3.0.4",
"xml2js-fork-stringify": "^0.4.23"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/minimatch": "^3.0.3",
"@types/node": "^14.14.20",
"@types/rimraf": "^3.0.0",
"@types/uuid": "^8.3.0",
"@types/xml2js": "^0.4.7",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"tslint": "^6.1.3",
"typescript": "^4.1.3",
"uuid": "^8.3.2"
},
"files": [
"lib/**/*",
"types/**/*"
],
"homepage": "https://github.com/gdman/sf-metadata",
"repository": "github:gdman/sf-metadata",
"keywords": [
"salesforce",
"sfdc",
"plugin",
"metadata",
"xml",
"json"
]
}