-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2 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
{
"name": "cla-wrapper",
"version": "0.3.9",
"description": "Wrapper for CDISC Library API",
"main": "dist/classes/claWrapper.js",
"types": "dist/classes/claWrapper.d.ts",
"scripts": {
"test": "yarn build && jest -c jest.config.js --coverage --verbose",
"build": "tsc",
"docs": "typedoc",
"publish": "yarn build && npm publish"
},
"repository": "https://github.com/defineEditor/cla-wrapper",
"author": "Dmitry Kolosov",
"contributors": [
{
"name": "Dmitry Kolosov",
"email": "dmitry.m.kolosov@gmail.com",
"url": ""
},
{
"name": "Sergei Krivtcov",
"email": "1000eyed@gmail.com",
"url": ""
}
],
"homepage": "https://defineeditor.github.io/cla-wrapper/index.html",
"keywords": [
"cdisc",
"library",
"api",
"wrapper"
],
"license": "MIT",
"dependencies": {
"fast-xml-parser": "^3.19.0",
"json2csv": "^5.0.0",
"qs": "^6.9.4",
"request": "^2.88.2",
"types": "^0.1.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@types/jest": "^26.0.19",
"@types/json2csv": "^5.0.1",
"@types/node": "*",
"@types/qs": "^6.9.5",
"@types/request": "^2.48.5",
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"babel-jest": "^26.6.3",
"docdash": "^1.1.1",
"eslint": "^7.12.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-with-typescript": "*",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.6.3",
"typedoc": "^0.21.0",
"typescript": "^4.0.0"
}
}