forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.33 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
66
{
"name": "@fluid-experimental/property-proxy",
"version": "2.0.0-internal.1.2.0",
"description": "Proxify PropertyTree to interact with them in a JavaScript like manner",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "experimental/PropertyDDS/packages/property-proxy"
},
"license": "MIT",
"author": "Microsoft and contributors",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"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 *.tsbuildinfo *.build.log",
"eslint": "eslint --format stylish src",
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
"lint": "npm run eslint",
"lint:fix": "npm run eslint:fix",
"test": "npm run test:jest",
"test:coverage": "jest --coverage --ci --reporters=default --reporters=jest-junit",
"test:jest": "jest",
"tsc": "tsc"
},
"dependencies": {
"@fluid-experimental/property-changeset": ">=2.0.0-internal.1.2.0 <2.0.0-internal.2.0.0",
"@fluid-experimental/property-properties": ">=2.0.0-internal.1.2.0 <2.0.0-internal.2.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@fluidframework/build-common": "^1.0.0",
"@fluidframework/eslint-config-fluid": "^0.28.2000",
"@rushstack/eslint-config": "^2.5.1",
"babel-loader": "^8.0.5",
"concurrently": "^6.2.0",
"eslint": "~8.6.0",
"jest": "^26.6.3",
"jest-junit": "^10.0.0",
"nyc": "^15.0.0",
"rimraf": "^2.6.2",
"source-map-loader": "^2.0.0",
"source-map-support": "^0.5.16",
"ts-jest": "^26.4.4",
"ts-loader": "^9.3.0",
"typescript": "~4.5.5"
},
"jest-junit": {
"outputDirectory": "nyc",
"outputName": "jest-junit-report.xml"
}
}