-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.12 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
{
"name": "@cycleplatform/internal-api",
"author": "Petrichor, Inc.",
"description": "An API client to utilize Cycle's Internal API (inside a container) ",
"version": "1.2.1",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "DOCKER_BUILDKIT=1 docker build -t cycleplatform/internal-api-test .",
"lint": "tsdx lint --fix",
"prepare": "tsdx build"
},
"peerDependencies": {},
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": false,
"trailingComma": "es5"
},
"module": "dist/internal-api.esm.js",
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/ws": "^7.4.4",
"babel-plugin-module-resolver": "^4.1.0",
"husky": "^4.0.7",
"prettier": "^1.19.1",
"tsdx": "^0.14.1",
"tslib": "^2.2.0",
"typescript": "^4.3.2"
},
"dependencies": {
"@cycleplatform/cycle-api": "^1.10.5",
"ws": "^7.4.6"
}
}