-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.08 KB
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
{
"name": "backbone-cabal",
"private": false,
"version": "1.0.10",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/backbonecabal/server.git"
},
"main": "./build/index.js",
"files": [
"build/**/*",
".node-version"
],
"scripts": {
"start": "npm run build && node ./build/index.js",
"test": "npm run test:lint && npm run test:unit",
"test:unit": "jest --coverage",
"test:lint": "tslint -c tslint.json 'src/**/*.ts' --fix",
"build": "tsc",
"watch:build": "tsc --watch",
"watch:test": "jest --watch"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@open-rpc/schema-utils-js": "^1.12.0",
"@open-rpc/server-js": "^1.6.2"
},
"devDependencies": {
"@open-rpc/meta-schema": "^1.6.0",
"@types/connect": "^3.4.33",
"@types/cors": "^2.8.6",
"@types/jest": "25.1.0",
"docusaurus-plugin-typedoc": "^0.7.0",
"jest": "^25.1.0",
"ts-jest": "25.0.0",
"tslint": "6.0.0",
"typedoc": "^0.20.20",
"typedoc-plugin-markdown": "^3.4.1",
"typescript": "3.7.5"
}
}