This repository has been archived by the owner on Apr 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.66 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
{
"name": "@synor/source-file",
"version": "0.6.0",
"description": "Synor Source Engine - File",
"keywords": [
"synor",
"synor-source",
"file"
],
"homepage": "https://github.com/Synor/source-file#readme",
"bugs": "https://github.com/Synor/source-file/issues",
"license": "MIT",
"author": "Munif Tanjim (https://muniftanjim.dev)",
"files": [
"lib"
],
"main": "lib/index.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/Synor/source-file",
"scripts": {
"prebuild": "npm run clean",
"build": "bili",
"clean": "rimraf lib/*",
"prepack": "npm run build",
"test": "jest"
},
"dependencies": {
"connection-string": "^3.1.1",
"debug": "^4.1.1"
},
"devDependencies": {
"@synor/core": "^0.9.0",
"@types/debug": "^4.1.5",
"@types/jest": "^24.0.25",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"bili": "^4.8.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-config-standard-with-typescript": "^11.0.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.0",
"rimraf": "^3.0.2",
"rollup-plugin-typescript2": "^0.25.2",
"ts-jest": "^24.3.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.4"
},
"peerDependencies": {
"@synor/core": "^0.9.0"
},
"publishConfig": {
"access": "public"
}
}