-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
65 lines (65 loc) · 2.04 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
{
"name": "react-realm-context",
"version": "0.3.0",
"description": "Components that simplifies using Realm with React",
"scripts": {
"build": "tsc -p config/tsconfig.build.json",
"docs": "typedoc --tsconfig config/tsconfig.build.json",
"fix-headers": "node ./scripts/fix-headers.js",
"lint:ts": "tslint --project tsconfig.json",
"prepack": "npm run build",
"start": "mocha --opts config/mocha.opts -w",
"test": "mocha --opts config/mocha.opts src/**/*.test.tsx",
"test:ci": "mocha --opts config/mocha.opts --reporter mocha-junit-reporter",
"test:environments": "mocha --opts config/mocha.opts integration-tests/environments.test.ts",
"pretest:examples": "npm pack",
"test:examples": "mocha --opts config/mocha.opts integration-tests/examples.test.ts"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"author": {
"name": "Realm",
"email": "[email protected]",
"url": "https://realm.io"
},
"repository": "https://github.com/realm/react-realm-context",
"license": "Apache-2.0",
"devDependencies": {
"@octokit/rest": "^16.2.0",
"@types/debug": "^4.1.2",
"@types/fs-extra": "^5.0.2",
"@types/mocha": "^5.2.0",
"@types/node": "^11.9.5",
"@types/react": "^16.3.14",
"@types/react-test-renderer": "^16.0.1",
"@types/uuid": "^3.4.4",
"commander": "^2.19.0",
"fs-extra": "^7.0.1",
"gh-pages": "^2.0.1",
"mocha": "^6.0.2",
"mocha-junit-reporter": "^1.17.0",
"prettier": "^1.12.1",
"react": "^16.3.2",
"react-test-renderer": "^16.3.2",
"realm": "2.22.0",
"segfault-handler": "^1.0.1",
"ts-node": "^8.0.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.17.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^3.6.0",
"typedoc": "^0.14.2",
"typescript": "^3.1.6",
"uuid": "^3.3.2"
},
"peerDependencies": {
"react": ">=16.3",
"realm": ">=2.20"
},
"dependencies": {
"debug": "^4.1.1",
"fast-deep-equal": "^2.0.1",
"memoize-one": "^5.0.0"
}
}