forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.42 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
{
"name": "@fluid-internal/fluidapp-odsp-urlresolver",
"version": "0.47.0",
"private": true,
"description": "Url Resolver for Fluid app urls.",
"homepage": "https://fluidframework.com",
"repository": "https://github.com/microsoft/FluidFramework",
"license": "MIT",
"author": "Microsoft and contributors",
"sideEffects": false,
"main": "dist/index.js",
"module": "lib/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run build:genver && concurrently npm:build:compile npm:lint",
"build:commonjs": "npm run tsc && npm run build:test",
"build:compile": "concurrently npm:build:commonjs npm:build:esnext",
"build:esnext": "tsc --project ./tsconfig.esnext.json",
"build:full": "npm run build",
"build:full:compile": "npm run build:compile",
"build:genver": "gen-version",
"build:test": "tsc --project ./src/test/tsconfig.json",
"clean": "rimraf dist lib *.tsbuildinfo *.build.log",
"eslint": "eslint --format stylish src",
"eslint:fix": "eslint --format stylish src --fix",
"lint": "npm run eslint",
"lint:fix": "npm run eslint:fix",
"test": "npm run test:mocha",
"test:mocha": "mocha --recursive dist/test -r node_modules/@fluidframework/mocha-test-setup --unhandled-rejections=strict",
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
"tsc": "tsc",
"tsfmt": "tsfmt --verify",
"tsfmt:fix": "tsfmt --replace"
},
"dependencies": {
"@fluidframework/common-utils": "^0.32.1",
"@fluidframework/core-interfaces": "^0.39.7",
"@fluidframework/driver-definitions": "^0.39.6",
"@fluidframework/odsp-driver": "^0.47.0",
"@fluidframework/odsp-driver-definitions": "^0.47.0"
},
"devDependencies": {
"@fluidframework/build-common": "^0.22.0",
"@fluidframework/eslint-config-fluid": "^0.23.0",
"@fluidframework/mocha-test-setup": "^0.47.0",
"@types/mocha": "^8.2.2",
"@typescript-eslint/eslint-plugin": "~4.14.0",
"@typescript-eslint/parser": "~4.14.0",
"concurrently": "^5.2.0",
"cross-env": "^7.0.2",
"eslint": "~7.18.0",
"eslint-plugin-eslint-comments": "~3.2.0",
"eslint-plugin-import": "~2.22.1",
"eslint-plugin-no-null": "~1.0.2",
"eslint-plugin-prefer-arrow": "~1.2.2",
"eslint-plugin-react": "~7.22.0",
"eslint-plugin-unicorn": "~26.0.1",
"mocha": "^8.4.0",
"rimraf": "^2.6.2",
"typescript": "~4.1.3",
"typescript-formatter": "7.1.0"
}
}