-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.53 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
{
"name": "dataone",
"version": "0.1.0",
"description": "An open-source JavaScript library providing access to the DataONE API",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "jest",
"docs": "jsdoc -c jsdoc.json",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write src",
"format:check": "prettier --check src",
"example": "node examples/server.js",
"build": "webpack --config webpack.config.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robyngit/d1-js.git"
},
"keywords": [
"dataone",
"d1",
"ecoinformatics"
],
"author": "Robyn Thiessen-Bock",
"license": "ISC",
"bugs": {
"url": "https://github.com/robyngit/d1-js/issues"
},
"homepage": "https://github.com/robyngit/d1-js#readme",
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"babel-jest": "^29.6.2",
"babel-loader": "^9.1.3",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"express": "^4.18.2",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"jest-fetch-mock": "^3.0.3",
"jsdoc": "^4.0.2",
"prettier": "^3.0.1",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}