-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.41 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
{
"name": "@eyedea/syncano",
"version": "1.0.0",
"description": "Custom wrapper for syncano-core library",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/eyedea-io/syncano.git",
"author": "dev@eyedea.io",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"config",
"src",
"bin",
"scripts",
"socket-template"
],
"bin": {
"syncano-scripts": "./bin/syncano-scripts.js"
},
"engines": {
"node": ">=8.10"
},
"keywords": [
"syncano",
"core",
"socket",
"endpoint"
],
"scripts": {
"lint": "eslint {src,test}/**/*.ts",
"build": "tsc",
"codecov": "codecov",
"prebuild": "rm -rf ./dist",
"prepublish": "npm run build",
"test": "jest",
"canary": "npm version prerelease --preid=alpha"
},
"dependencies": {
"@syncano/core": "0.15.1-alpha.35",
"@syncano/validate": "0.15.1-alpha.36",
"chalk": "3.0.0",
"cross-spawn": "7.0.1",
"fs-extra": "8.1.0"
},
"devDependencies": {
"@types/node": "13.7.1",
"@types/node-fetch": "2.5.4",
"@typescript-eslint/eslint-plugin": "2.17.0",
"@typescript-eslint/parser": "2.17.0",
"codecov": "3.6.2",
"eslint": "6.8.0",
"jest": "25.1.0",
"ts-jest": "25.0.0",
"typescript": "3.7.5"
},
"prettier": {
"bracketSpacing": false,
"semi": false,
"singleQuote": true
}
}