forked from IQSS/dataverse-client-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.6 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.6 KB
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
{
"name": "js-dataverse",
"version": "1.0.48",
"description": "A Dataverse module for JavaScript/TypeScript",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"publish": "tsc && npm publish",
"test": "jest --watchAll",
"test:coverage": "jest --coverage --watchAll",
"test:ci": "jest --ci --maxWorkers=2 --detectOpenHandles --forceExit",
"eslint:check": "eslint --ext '.js,.jsx,.ts,.tsx' .",
"eslint:fix": "eslint --ext '.js,.jsx,.ts,.tsx' . --fix",
"format:check": "tsfmt --verify",
"format:fix": "tsfmt --replace"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IQSS/dataverse-client-javascript.git"
},
"keywords": [
"dataverse"
],
"author": "Tai Nguyen Bui <tai@theagilemonkeys.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/IQSS/dataverse-client-javascript/issues"
},
"homepage": "https://github.com/IQSS/dataverse-client-javascript#readme",
"devDependencies": {
"@types/chai": "^4.2.1",
"@types/faker": "^4.1.5",
"@types/jest": "^24.0.18",
"@types/request-promise": "^4.1.44",
"@types/sinon": "^7.0.13",
"@typescript-eslint/eslint-plugin": "^2.1.0",
"@typescript-eslint/parser": "^2.1.0",
"chai": "^4.2.0",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.2.0",
"faker": "^4.1.0",
"jest": "^24.9.0",
"sinon": "^7.4.2",
"ts-jest": "^24.0.2",
"typescript": "^3.6.2",
"typescript-formatter": "^7.2.2"
},
"dependencies": {
"axios": "^0.19.0",
"request-promise": "^4.2.4"
}
}