-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 1.99 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
69
70
71
72
{
"name": "edge-server-tools",
"version": "0.2.19",
"private": false,
"description": "Common CouchDb & Express utility functions",
"repository": "https://github.com/EdgeApp/edge-server-tools",
"license": "MIT",
"author": "Airbitz, Inc.",
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.js",
"types": "./lib/src/index.d.ts"
},
"./package.json": "./package.json"
},
"main": "./lib/index.js",
"module": "./lib/edge-server-tools.js",
"types": "./lib/src/index.d.ts",
"files": [
"CHANGELOG.md",
"lib/*",
"README.md"
],
"scripts": {
"clean": "rimraf lib",
"fix": "eslint . --fix",
"lib": "rollup -c",
"lint": "eslint .",
"precommit": "lint-staged && npm-run-all types test",
"prepare": "husky install && npm-run-all clean -p lib types",
"test": "mocha -r sucrase/register 'test/**/*.test.ts'",
"types": "tsc",
"verify": "npm-run-all lint types test"
},
"lint-staged": {
"*.{js,ts}": "eslint"
},
"dependencies": {
"cleaners": "^0.3.11",
"nano": "^10.1.3",
"node-fetch": "^2.6.1",
"yavent": "^0.1.3"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-sucrase": "^3.1.0",
"@types/chai": "^4.2.19",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.4",
"@types/node-fetch": "^2.5.10",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"chai": "^4.3.4",
"eslint": "^7.14.0",
"eslint-config-standard-kit": "0.15.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-simple-import-sort": "^6.0.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.3",
"mocha": "^8.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.0",
"rollup": "^2.52.2",
"rollup-plugin-mjs-entry": "^0.1.1",
"sucrase": "^3.19.0",
"typescript": "^4.1.2"
}
}