-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 932 Bytes
/
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
{
"type": "module",
"name": "@mobtime/sdk",
"version": "1.0.0-beta.7",
"main": "src/sdk/index.js",
"module": "src/sdk/index.js",
"repository": "git@github.com:mobtimeapp/mobtime-sdk.git",
"author": "Alex Barry <alex.barry@gmail.com>",
"license": "MIT",
"types": "types/index.d.ts",
"scripts": {
"example": "node src/example.js",
"test": "ava",
"lint": "eslint src/**/*.js",
"build:types": "tsc src/sdk/*.js --declaration --allowJs --emitDeclarationOnly --outDir types"
},
"devDependencies": {
"ava": "^3.12.1",
"eslint": "^7.8.1",
"prettier-eslint-cli": "^4.2.1",
"sinon": "^9.0.3",
"typescript": "^4.6.4"
},
"dependencies": {
"composable-state": "^0.0.2",
"esm": "^3.2.25",
"ws": "^7.3.1"
},
"ava": {
"require": [
"esm"
]
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": true,
"singlQuote": true
}
}