-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
68 lines (68 loc) · 2.06 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
{
"name": "dataverse-gen",
"version": "2.0.17",
"description": "Early bound types generator for dataverse-ify",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"dataverse-gen": "lib/index.js"
},
"scripts": {
"start": "tsc & node lib/index.js",
"start-help": "tsc & node lib/index.js help",
"start-init": "tsc & node lib/index.js init",
"start-eject": "tsc & node lib/index.js eject",
"build": "tsc",
"test": "tsc & jest",
"unit-test": "tsc & jest unit",
"integration-test": "tsc & jest integration",
"lint": "eslint src --ext .ts",
"lint:fix": "npm run lint -- --fix",
"coverage": "jest --coverage",
"prepublishOnly": "npm version patch",
"preversion": "npm run unit-test",
"version": "genversion --es6 --semi --double src/version.ts && npm run build && git add src/version.ts",
"postversion": "git push && git push --tags"
},
"author": "Scott Durow",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.0",
"config": "^3.3.7",
"dataverse-ify": "^2.0.8",
"ejs": "^3.1.5",
"enquirer": "^2.3.6",
"fs-extra": "^9.0.1",
"lodash.merge": "^4.6.2",
"minimist": "^1.2.8",
"node-fetch": "^2.6.1",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@types/config": "0.0.36",
"@types/cryptr": "^4.0.1",
"@types/ejs": "^3.0.5",
"@types/fs-extra": "^8.1.1",
"@types/inquirer": "^9.0.3",
"@types/jest": "^27.5.1",
"@types/lodash.merge": "^4.6.6",
"@types/minimist": "^1.2.1",
"@types/node": "^13.13.39",
"@types/node-fetch": "^2.5.7",
"@types/xrm": "^9.0.33",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"dotenv": "^16.0.1",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-sonarjs": "^0.13.0",
"genversion": "^3.1.1",
"jest": "^28.1.0",
"jest-environment-jsdom": "^29.7.0",
"jest-serializer-xml": "^0.1.34",
"prettier": "^2.6.2",
"ts-jest": "^28.0.2",
"typescript": "^4.6.4"
}
}