-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·43 lines (43 loc) · 1.19 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
{
"name": "optimade",
"version": "2.1.0",
"description": "Aggregating Optimade client for the online materials databases",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run lint && rollup --config",
"lint": "eslint './src/**/*.ts'",
"lint:fix": "eslint --fix './src/**/*.ts'",
"prepublishOnly": "npm run build && npm run prefetch",
"test": "echo \"Error: no test specified\" && exit 1",
"prefetch": "node prefetch.js"
},
"author": "Pavel Malyshev",
"license": "MIT",
"devDependencies": {
"@types/eslint": "^8.4.2",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"@rollup/plugin-json": "^4.1.0",
"@types/jest": "^26.0.15",
"jest": "^26.6.0",
"rollup": "^2.47.0",
"rollup-plugin-typescript2": "^0.28.0",
"ts-jest": "^26.4.1",
"eslint": "^8.16.0",
"typescript": "^4.0.3"
},
"dependencies": {
"isomorphic-unfetch": "^3.1.0",
"node-abort-controller": "^3.0.1"
},
"keywords": [
"optimade",
"materials"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tilde-lab/optimade-client"
}
}